1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
#!/usr/bin/env python
import sys
from setuptools import setup
requires = ['six>=1.8.0,<2.0.0',
'docutils>=0.10']
setup(
name='bcdoc',
version='0.16.0',
description='ReST document generation tools for botocore.',
long_description=open('README.rst').read(),
author='Amazon Web Services',
url='https://github.com/botocore/bcdoc',
packages=['bcdoc'],
package_dir={'bcdoc': 'bcdoc'},
install_requires=requires,
extras_require={
':python_version=="2.6"': ['ordereddict==1.1'],
},
license='Apache License 2.0',
classifiers=(
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
),
)
|