2015-03-27 19:50:56 +00:00
|
|
|
import codecs
|
2018-08-02 03:34:35 +00:00
|
|
|
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
2015-03-27 19:50:56 +00:00
|
|
|
|
|
|
|
setup(
|
|
|
|
name='sphinx-autoapi',
|
2017-11-13 16:29:06 +00:00
|
|
|
version='0.5.0',
|
2015-03-27 19:50:56 +00:00
|
|
|
author='Eric Holscher',
|
|
|
|
author_email='eric@ericholscher.com',
|
2016-10-25 23:28:12 +00:00
|
|
|
url='http://github.com/rtfd/sphinx-autoapi',
|
2015-03-27 19:50:56 +00:00
|
|
|
license='BSD',
|
2016-10-25 23:28:12 +00:00
|
|
|
description='Sphinx auto API documentation generator',
|
2015-04-22 23:37:04 +00:00
|
|
|
packages=find_packages('.'),
|
2015-03-27 19:50:56 +00:00
|
|
|
long_description=codecs.open("README.rst", "r", "utf-8").read(),
|
|
|
|
include_package_data=True,
|
2018-08-02 03:34:35 +00:00
|
|
|
install_requires=[
|
|
|
|
'astroid;python_version>="3"',
|
|
|
|
'astroid<2;python_version<"3"',
|
|
|
|
'PyYAML',
|
|
|
|
'sphinx',
|
|
|
|
'sphinxcontrib-golangdomain',
|
|
|
|
'sphinxcontrib-dotnetdomain',
|
|
|
|
'unidecode',
|
|
|
|
],
|
2015-03-27 19:50:56 +00:00
|
|
|
)
|