-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
23 lines (22 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
from setuptools import setup
import opterator
setup(
name="opterator",
version=opterator.__version__,
py_modules=['opterator', 'test_opterator'],
author="Dusty Phillips",
author_email="[email protected]",
license="MIT",
keywords="opterator option parse parser options",
url="https://github.com/buchuki/opterator/",
description="Easy option parsing introspected from function signature.",
download_url="https://github.com/buchuki/opterator/archive/%s.tar.gz" % opterator.__version__,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
]
)