-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
28 lines (25 loc) · 871 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
#!/usr/bin/env python
from setuptools import setup
from groper import __version__ as VERSION
setup(
name = 'groper',
version = VERSION,
description = 'Library for parsing config files and command line arguments',
author = 'Igor Partola',
author_email = '[email protected]',
url = 'https://github.com/ipartola/groper',
py_modules = ['groper'],
license = 'MIT',
test_suite = 'tests.tests_all',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries',
],
)