-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (30 loc) · 981 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
33
"""
Blargs!
-------
Blargs command line parser.
"""
import blargs
import os
from setuptools import setup
setup(name='blargs',
version=blargs.__version__,
url='https://github.com/gyllstromk/blargs',
license='BSD',
author='Karl Gyllstrom',
author_email='[email protected]',
description='Blargs command line parser',
long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
py_modules=['blargs'],
include_package_data=True,
platforms='any',
test_suite='test',
classifiers = [
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)