Revert "Add python3-argparse"
[platform/upstream/python-argparse.git] / setup.py
1 import sys, os
2
3 from setuptools import setup, find_packages
4
5 import argparse
6
7 long_description = open('README.txt').read()
8
9
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="Thomas Waldmann",
16     author_email="tw@waldmann-edv.de",
17     url="https://github.com/ThomasWaldmann/argparse/",
18     license="Python Software Foundation License",
19     keywords="argparse command line parser parsing",
20     platforms="any",
21     classifiers="""\
22 Development Status :: 5 - Production/Stable
23 Environment :: Console
24 Intended Audience :: Developers
25 License :: OSI Approved :: Python Software Foundation License
26 Operating System :: OS Independent
27 Programming Language :: Python
28 Programming Language :: Python :: 2
29 Programming Language :: Python :: 3
30 Programming Language :: Python :: 2.3
31 Programming Language :: Python :: 2.4
32 Programming Language :: Python :: 2.5
33 Programming Language :: Python :: 2.6
34 Programming Language :: Python :: 2.7
35 Programming Language :: Python :: 3.0
36 Programming Language :: Python :: 3.1
37 Programming Language :: Python :: 3.2
38 Programming Language :: Python :: 3.3
39 Programming Language :: Python :: 3.4
40 Topic :: Software Development""".splitlines(),
41     py_modules=['argparse'],
42 )
43
44 if __name__ == '__main__':
45     setup(**setup_args)
46