File: setup.py

package info (click to toggle)
python-bcdoc 0.16.0-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 164 kB
  • sloc: python: 1,084; makefile: 3
file content (39 lines) | stat: -rw-r--r-- 1,131 bytes parent folder | download | duplicates (3)
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',
    ),
)