mirror of
https://github.com/readthedocs/sphinx-autoapi
synced 2024-10-31 21:20:17 +00:00
48 lines
1.5 KiB
Python
48 lines
1.5 KiB
Python
import io
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
setup(
|
|
name='sphinx-autoapi',
|
|
version='1.2.1',
|
|
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('.'),
|
|
long_description=io.open("README.rst", "r", encoding="utf-8").read(),
|
|
include_package_data=True,
|
|
install_requires=[
|
|
'astroid;python_version>="3"',
|
|
'astroid<2;python_version<"3"',
|
|
'Jinja2',
|
|
'PyYAML',
|
|
'sphinx>=1.6',
|
|
'unidecode',
|
|
],
|
|
extras_require={
|
|
'go': ['sphinxcontrib-golangdomain'],
|
|
'dotnet': ['sphinxcontrib-dotnetdomain']
|
|
},
|
|
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',
|
|
'Programming Language :: Python :: 3.8',
|
|
],
|
|
)
|