You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sphinx-autoapi/setup.py

27 lines
695 B
Python

10 years ago
import codecs
from setuptools import setup, find_packages
10 years ago
setup(
name='sphinx-autoapi',
6 years ago
version='0.7.1',
10 years ago
author='Eric Holscher',
author_email='eric@ericholscher.com',
url='http://github.com/rtfd/sphinx-autoapi',
10 years ago
license='BSD',
description='Sphinx auto API documentation generator',
9 years ago
packages=find_packages('.'),
10 years ago
long_description=codecs.open("README.rst", "r", "utf-8").read(),
include_package_data=True,
install_requires=[
'astroid;python_version>="3"',
'astroid<2;python_version<"3"',
'PyYAML',
'sphinx>=1.6',
'sphinxcontrib-golangdomain',
'sphinxcontrib-dotnetdomain',
'unidecode',
],
10 years ago
)