setup.py 625 B

1234567891011121314151617181920212223
  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. version="1.0.0",
  14. install_requires=['sphinx >= 2.1'],
  15. license='BSD',
  16. packages=['sphinx_multiversion'],
  17. entry_points={
  18. 'console_scripts': [
  19. 'sphinx-multiversion=sphinx_multiversion:main',
  20. ],
  21. },
  22. )