Revert "Add python3-argparse"
[platform/upstream/python-argparse.git] / PKG-INFO
1 Metadata-Version: 1.1
2 Name: argparse
3 Version: 1.4.0
4 Summary: Python command-line parsing library
5 Home-page: https://github.com/ThomasWaldmann/argparse/
6 Author: Thomas Waldmann
7 Author-email: tw@waldmann-edv.de
8 License: Python Software Foundation License
9 Description: The argparse module makes it easy to write user friendly command line
10         interfaces.
11         
12         The program defines what arguments it requires, and argparse will figure out
13         how to parse those out of sys.argv. The argparse module also automatically
14         generates help and usage messages and issues errors when users give the
15         program invalid arguments.
16         
17         As of Python >= 2.7 and >= 3.2, the argparse module is maintained within the
18         Python standard library. For users who still need to support Python < 2.7 or
19         < 3.2, it is also provided as a separate package, which tries to stay
20         compatible with the module in the standard library, but also supports older
21         Python versions.
22         
23         Also, we can fix bugs here for users who are stuck on some non-current python
24         version, like e.g. 3.2.3 (which has bugs that were fixed in a later 3.2.x
25         release).
26         
27         argparse is licensed under the Python license, for details see LICENSE.txt.
28         
29         
30         Compatibility
31         -------------
32         
33         argparse should work on Python >= 2.3, it was tested on:
34         
35         * 2.3, 2.4, 2.5, 2.6 and 2.7
36         * 3.1, 3.2, 3.3, 3.4
37         
38         
39         Installation
40         ------------
41         
42         Try one of these:
43         
44             python setup.py install
45         
46             easy_install argparse
47         
48             pip install argparse
49         
50             putting argparse.py in some directory listed in sys.path should also work
51         
52         
53         Bugs
54         ----
55         
56         If you find a bug in argparse (pypi), please try to reproduce it with latest
57         python 2.7 and 3.4 (and use argparse from stdlib).
58         
59         If it happens there also, please file a bug in the python.org issue tracker.
60         If it does not happen there, file a bug in the argparse package issue tracker.
61         
62         
63 Keywords: argparse command line parser parsing
64 Platform: any
65 Classifier: Development Status :: 5 - Production/Stable
66 Classifier: Environment :: Console
67 Classifier: Intended Audience :: Developers
68 Classifier: License :: OSI Approved :: Python Software Foundation License
69 Classifier: Operating System :: OS Independent
70 Classifier: Programming Language :: Python
71 Classifier: Programming Language :: Python :: 2
72 Classifier: Programming Language :: Python :: 3
73 Classifier: Programming Language :: Python :: 2.3
74 Classifier: Programming Language :: Python :: 2.4
75 Classifier: Programming Language :: Python :: 2.5
76 Classifier: Programming Language :: Python :: 2.6
77 Classifier: Programming Language :: Python :: 2.7
78 Classifier: Programming Language :: Python :: 3.0
79 Classifier: Programming Language :: Python :: 3.1
80 Classifier: Programming Language :: Python :: 3.2
81 Classifier: Programming Language :: Python :: 3.3
82 Classifier: Programming Language :: Python :: 3.4
83 Classifier: Topic :: Software Development