Files
sphinx/tests/roots/test-setup/setup.py
Takeshi KOMIYA 0ba202009d refactor: Reduce usages of distutils (refs: #9820)
distutils module is now deprecated and will be removed since Python
3.12.  So this reduces the usages of the module.
2022-01-01 21:38:56 +09:00

11 lines
166 B
Python

from setuptools import setup
from sphinx.setup_command import BuildDoc
cmdclass = {'build_sphinx': BuildDoc}
setup(
name='sphinxdoc',
cmdclass=cmdclass,
)