-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
26 lines (24 loc) · 843 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
import sys
from setuptools import setup, find_packages
install_requires = ['versiontools']
if sys.version_info[0] == 2 and sys.version_info[1] < 7:
install_requires.append('argparse')
setup(
name = 'compago',
description = 'A framework for simple command-line option parsing.',
author = 'Justin Mohr',
author_email = '[email protected]',
packages = find_packages(exclude=['*.test.*', '*.test']),
version = ':versiontools:compago:',
install_requires = install_requires,
license = 'BSD',
url = 'http://github.com/jmohr/compago',
package_data = {'':['README']},
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Topic :: Software Development',
]
)