sphinx-autoapi/setup.py

48 lines
1.4 KiB
Python
Raw Normal View History

2019-08-25 22:53:58 +00:00
import io
from setuptools import setup, find_packages
version = {}
with open("autoapi/_version.py") as fp:
exec(fp.read(), version)
2015-03-27 19:50:56 +00:00
setup(
2020-04-06 03:03:05 +00:00
name="sphinx-autoapi",
version=version["__version__"],
2020-04-06 03:03:05 +00:00
author="Eric Holscher",
author_email="eric@ericholscher.com",
url="http://github.com/readthedocs/sphinx-autoapi",
license="BSD",
description="Sphinx API documentation generator",
packages=find_packages("."),
2019-08-25 22:53:58 +00:00
long_description=io.open("README.rst", "r", encoding="utf-8").read(),
2015-03-27 19:50:56 +00:00
include_package_data=True,
install_requires=[
"astroid>=2.4",
2020-04-06 03:03:05 +00:00
"Jinja2",
"PyYAML",
"sphinx>=3.0",
2020-04-06 03:03:05 +00:00
"unidecode",
],
extras_require={
2020-10-08 05:24:46 +00:00
"docs": ["sphinx", "sphinx_rtd_theme"],
2020-04-06 03:03:05 +00:00
"go": ["sphinxcontrib-golangdomain"],
"dotnet": ["sphinxcontrib-dotnetdomain"],
},
python_requires=">=3.6",
2019-04-07 00:56:05 +00:00
classifiers=[
2020-04-06 03:03:05 +00:00
"Development Status :: 4 - Beta",
"Environment :: Plugins",
"Framework :: Sphinx :: Extension",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
2021-01-20 22:59:15 +00:00
"Programming Language :: Python :: 3.9",
2019-04-07 00:56:05 +00:00
],
2015-03-27 19:50:56 +00:00
)