Add distutils command for building Sphinx.

This commit is contained in:
Georg Brandl
2008-07-29 09:51:58 +00:00
parent 6c2f991be0
commit 68f5d02390
4 changed files with 97 additions and 2 deletions

View File

@@ -84,7 +84,10 @@ setup(
'console_scripts': [
'sphinx-build = sphinx:main',
'sphinx-quickstart = sphinx.quickstart:main'
]
],
'distutils.commands': [
'build_sphinx = sphinx.setup_command:BuildDoc',
],
},
install_requires=requires,
)