sphinx-multiversion/setup.py

31 lines
945 B
Python
Raw Normal View History

2020-02-19 17:18:09 +01:00
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
2020-03-11 13:50:05 +01:00
import os.path
2020-02-19 17:18:09 +01:00
from setuptools import setup
2020-03-11 13:50:05 +01:00
with open(os.path.join(os.path.dirname(__file__), "README.md")) as f:
readme = f.read()
2020-02-19 17:18:09 +01:00
setup(
2020-03-11 13:28:44 +01:00
name="sphinx-multiversion",
description="Add support for multiple versions to sphinx",
2020-03-11 13:50:05 +01:00
long_description=readme,
long_description_content_type="text/markdown",
2020-02-19 17:18:09 +01:00
classifiers=[
2020-03-11 13:28:44 +01:00
"License :: OSI Approved :: BSD License",
2020-02-19 17:18:09 +01:00
"Programming Language :: Python :: 3",
2020-03-11 13:50:05 +01:00
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
2020-03-11 13:28:44 +01:00
],
author="Jan Holthuis",
author_email="holthuis.jan@googlemail.com",
2020-03-11 13:50:05 +01:00
url="https://holzhaus.github.io/sphinx-multiversion/",
2020-04-19 13:22:03 +02:00
version="0.2.1",
2020-03-11 13:28:44 +01:00
install_requires=["sphinx >= 2.1"],
license="BSD",
packages=["sphinx_multiversion"],
2020-02-19 17:18:09 +01:00
entry_points={
2020-03-11 13:28:44 +01:00
"console_scripts": ["sphinx-multiversion=sphinx_multiversion:main",],
2020-02-19 17:18:09 +01:00
},
2020-03-11 13:28:44 +01:00
)