sphinx-autoapi/setup.py
Ashley Whetter 763da7170f Cleaned up setup.py
Removed distutils support. It wasn't working anyway (Closes #25).
Removed redundant package_dir and package_data options.
Removed old testing dependencies.
Removed unnecessary wheel dependency (Closes #143).
2018-08-06 14:19:12 -07:00

27 lines
690 B
Python

import codecs
from setuptools import setup, find_packages
setup(
name='sphinx-autoapi',
version='0.5.0',
author='Eric Holscher',
author_email='eric@ericholscher.com',
url='http://github.com/rtfd/sphinx-autoapi',
license='BSD',
description='Sphinx auto API documentation generator',
packages=find_packages('.'),
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',
'sphinxcontrib-golangdomain',
'sphinxcontrib-dotnetdomain',
'unidecode',
],
)