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