forked from anntzer/defopt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (43 loc) · 1.5 KB
/
setup.py
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
40
41
42
43
44
45
46
47
from setuptools import setup
with open('README.rst') as readme:
long_description = readme.read()
setup(
name='defopt',
version='4.0.1',
description='Effortless argument parser',
long_description=long_description,
author='evan_',
author_email='[email protected]',
url='https://pypi.python.org/pypi/defopt',
license='GNU General Public License v3',
py_modules=['defopt'],
test_suite='test_defopt',
install_requires=[
'docutils',
'sphinxcontrib-napoleon>=0.5.1',
],
extras_require={
':python_version<"3.3"': ['funcsigs'],
':python_version<"3.4"': ['enum34'],
':python_version<"3.5"': ['typing'],
':sys.platform=="win32"': ['colorama>=0.3.4'],
},
tests_require=[
'mock;python_version<"3.3"',
],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
],
keywords='argument parser parsing optparse argparse getopt docopt sphinx',
)