setup.py 600 B

123456789101112131415161718192021
  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": ["sphinx-multiversion=sphinx_multiversion:main",],
  19. },
  20. )