2019-08-25 22:53:58 +00:00
|
|
|
import io
|
2018-08-02 03:34:35 +00:00
|
|
|
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
2020-05-15 03:37:18 +00:00
|
|
|
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",
|
2020-05-15 03:37:18 +00:00
|
|
|
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,
|
2018-08-02 03:34:35 +00:00
|
|
|
install_requires=[
|
2020-10-03 19:21:25 +00:00
|
|
|
"astroid>=2.4",
|
2020-04-06 03:03:05 +00:00
|
|
|
"Jinja2",
|
|
|
|
"PyYAML",
|
2020-10-03 19:21:25 +00:00
|
|
|
"sphinx>=3.0",
|
2020-04-06 03:03:05 +00:00
|
|
|
"unidecode",
|
2018-08-02 03:34:35 +00:00
|
|
|
],
|
2019-09-01 21:44:17 +00:00
|
|
|
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"],
|
2019-09-01 21:44:17 +00:00
|
|
|
},
|
2020-10-03 19:21:25 +00:00
|
|
|
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
|
|
|
)
|