mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
10 lines
169 B
Python
10 lines
169 B
Python
|
from distutils.core import setup
|
||
|
from sphinx.setup_command import BuildDoc
|
||
|
|
||
|
cmdclass = {'build_sphinx': BuildDoc}
|
||
|
|
||
|
setup(
|
||
|
name='sphinxdoc',
|
||
|
cmdclass=cmdclass,
|
||
|
)
|