summaryrefslogtreecommitdiff
path: root/setup.py
blob: ef6d56fa066ea08c56031fde8579763fe66ec1a9 (plain)
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
34
35
import sys, os

from setuptools import setup, find_packages

import argparse

long_description = open('README.txt').read()


setup_args = dict(
    name="argparse",
    version=argparse.__version__,
    description='Python command-line parsing library',
    long_description=long_description,
    author="Steven Bethard",
    author_email="steven.bethard@gmail.com",
    download_url="http://argparse.googlecode.com/files/argparse-%s.tar.gz" % (argparse.__version__, ),
    url="http://code.google.com/p/argparse/",
    license="Python Software Foundation License",
    keywords="argparse command line parser parsing",
    platforms="any",
    classifiers="""\
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: Python Software Foundation License
Operating System :: OS Independent
Programming Language :: Python
Topic :: Software Development""".splitlines(),
    py_modules=['argparse'],
)

if __name__ == '__main__':
    setup(**setup_args)