sphinx-autoapi/setup.py

47 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
2015-03-27 19:50:56 +00:00
setup(
name='sphinx-autoapi',
2019-10-10 03:02:29 +00:00
version='1.2.1',
2015-03-27 19:50:56 +00:00
author='Eric Holscher',
author_email='eric@ericholscher.com',
url='http://github.com/rtfd/sphinx-autoapi',
2015-03-27 19:50:56 +00:00
license='BSD',
2019-04-07 00:56:05 +00:00
description='Sphinx API documentation generator',
2015-04-22 23:37:04 +00:00
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;python_version>="3"',
'astroid<2;python_version<"3"',
2019-04-24 22:04:37 +00:00
'Jinja2',
'PyYAML',
2019-01-27 00:26:39 +00:00
'sphinx>=1.6',
'unidecode',
],
extras_require={
'go': ['sphinxcontrib-golangdomain'],
'dotnet': ['sphinxcontrib-dotnetdomain']
},
2019-04-07 00:56:05 +00:00
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
classifiers=[
'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 :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
2015-03-27 19:50:56 +00:00
)