forked from druths/arghandler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (24 loc) · 873 Bytes
/
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
#!/usr/bin/env python
from distutils.core import setup
setup( name='arghandler',
version='1.2.0',
description='argparse extended with awesome feature enhancements to make life easier',
author='Derek Ruths',
author_email='[email protected]',
url='http://www.github.com/druths/arghandler',
packages=['arghandler','arghandler.tests'],
install_requires = [ 'argcomplete' ],
license='Apache',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4'
],
keywords='argparse command-line parsing'
)