setup.py 604 B

12345678910111213141516171819202122
  1. #!/usr/bin/env python3
  2. # -*- coding: utf-8 -*-
  3. from setuptools import setup
  4. setup(
  5. name='sphinx-multiversion',
  6. description='Add support for multiple versions to sphinx',
  7. classifiers=[
  8. 'License :: OSI Approved :: BSD License',
  9. "Programming Language :: Python :: 3",
  10. ],
  11. author='Jan Holthuis',
  12. author_email='holthuis.jan@googlemail.com',
  13. install_requires=['sphinx >= 2.1'],
  14. license='MIT',
  15. packages=['sphinx_multiversion'],
  16. entry_points={
  17. 'console_scripts': [
  18. 'sphinx-multiversion=sphinx_multiversion:main',
  19. ],
  20. },
  21. )