Revision created by MOE tool push_codebase.
[gae.git] / python / lib / argparse / setup.py
blob20493d39ade3542cb00833167cf0639d42e7692c
1 import sys, os
3 from setuptools import setup, find_packages
5 import argparse
7 long_description = open('README.txt').read()
10 setup_args = dict(
11 name="argparse",
12 version=argparse.__version__,
13 description='Python command-line parsing library',
14 long_description=long_description,
15 author="Steven Bethard",
16 author_email="steven.bethard@gmail.com",
17 download_url="http://argparse.googlecode.com/files/argparse-%s.tar.gz" % (argparse.__version__, ),
18 url="http://code.google.com/p/argparse/",
19 license="Python Software Foundation License",
20 keywords="argparse command line parser parsing",
21 platforms="any",
22 classifiers="""\
23 Development Status :: 5 - Production/Stable
24 Environment :: Console
25 Intended Audience :: Developers
26 License :: OSI Approved :: Python Software Foundation License
27 Operating System :: OS Independent
28 Programming Language :: Python
29 Programming Language :: Python :: 2
30 Programming Language :: Python :: 3
31 Programming Language :: Python :: 2.3
32 Programming Language :: Python :: 2.4
33 Programming Language :: Python :: 2.5
34 Programming Language :: Python :: 2.6
35 Programming Language :: Python :: 2.7
36 Programming Language :: Python :: 3.0
37 Programming Language :: Python :: 3.1
38 Programming Language :: Python :: 3.2
39 Topic :: Software Development""".splitlines(),
40 py_modules=['argparse'],
43 if __name__ == '__main__':
44 setup(**setup_args)