setup.py 967 B

1234567891011121314151617181920212223242526272829303132
  1. #!/usr/bin/env python3
  2. # -*- coding: utf-8 -*-
  3. import os.path
  4. from setuptools import setup
  5. with open(os.path.join(os.path.dirname(__file__), "README.md")) as f:
  6. readme = f.read()
  7. setup(
  8. name="sphinx-multiversion",
  9. description="Add support for multiple versions to sphinx",
  10. long_description=readme,
  11. long_description_content_type="text/markdown",
  12. classifiers=[
  13. "License :: OSI Approved :: BSD License",
  14. "Programming Language :: Python :: 3",
  15. "Programming Language :: Python :: 3.6",
  16. "Programming Language :: Python :: 3.7",
  17. ],
  18. author="Jan Holthuis",
  19. author_email="[email protected]",
  20. url="https://holzhaus.github.io/sphinx-multiversion/",
  21. version="0.2.4",
  22. install_requires=["sphinx >= 2.1"],
  23. license="BSD",
  24. packages=["sphinx_multiversion"],
  25. entry_points={
  26. "console_scripts": [
  27. "sphinx-multiversion=sphinx_multiversion:main",
  28. ],
  29. },
  30. )