From 5f0f2f90361a4c0a76478b288998595fc3ddebd2 Mon Sep 17 00:00:00 2001 From: Roger Gonzalez Date: Wed, 8 Apr 2020 10:38:14 -0300 Subject: Added my old emacs config --- .../argparse-1.4.0.dist-info/METADATA | 85 ++++++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100644 .emacs.d.back/.python-environments/default/lib/python3.7/site-packages/argparse-1.4.0.dist-info/METADATA (limited to '.emacs.d.back/.python-environments/default/lib/python3.7/site-packages/argparse-1.4.0.dist-info/METADATA') diff --git a/.emacs.d.back/.python-environments/default/lib/python3.7/site-packages/argparse-1.4.0.dist-info/METADATA b/.emacs.d.back/.python-environments/default/lib/python3.7/site-packages/argparse-1.4.0.dist-info/METADATA new file mode 100644 index 00000000..ade3c7fb --- /dev/null +++ b/.emacs.d.back/.python-environments/default/lib/python3.7/site-packages/argparse-1.4.0.dist-info/METADATA @@ -0,0 +1,85 @@ +Metadata-Version: 2.0 +Name: argparse +Version: 1.4.0 +Summary: Python command-line parsing library +Home-page: https://github.com/ThomasWaldmann/argparse/ +Author: Thomas Waldmann +Author-email: tw@waldmann-edv.de +License: Python Software Foundation License +Keywords: argparse command line parser parsing +Platform: any +Classifier: Development Status :: 5 - Production/Stable +Classifier: Environment :: Console +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: Python Software Foundation License +Classifier: Operating System :: OS Independent +Classifier: Programming Language :: Python +Classifier: Programming Language :: Python :: 2 +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 2.3 +Classifier: Programming Language :: Python :: 2.4 +Classifier: Programming Language :: Python :: 2.5 +Classifier: Programming Language :: Python :: 2.6 +Classifier: Programming Language :: Python :: 2.7 +Classifier: Programming Language :: Python :: 3.0 +Classifier: Programming Language :: Python :: 3.1 +Classifier: Programming Language :: Python :: 3.2 +Classifier: Programming Language :: Python :: 3.3 +Classifier: Programming Language :: Python :: 3.4 +Classifier: Topic :: Software Development + +The argparse module makes it easy to write user friendly command line +interfaces. + +The program defines what arguments it requires, and argparse will figure out +how to parse those out of sys.argv. The argparse module also automatically +generates help and usage messages and issues errors when users give the +program invalid arguments. + +As of Python >= 2.7 and >= 3.2, the argparse module is maintained within the +Python standard library. For users who still need to support Python < 2.7 or +< 3.2, it is also provided as a separate package, which tries to stay +compatible with the module in the standard library, but also supports older +Python versions. + +Also, we can fix bugs here for users who are stuck on some non-current python +version, like e.g. 3.2.3 (which has bugs that were fixed in a later 3.2.x +release). + +argparse is licensed under the Python license, for details see LICENSE.txt. + + +Compatibility +------------- + +argparse should work on Python >= 2.3, it was tested on: + +* 2.3, 2.4, 2.5, 2.6 and 2.7 +* 3.1, 3.2, 3.3, 3.4 + + +Installation +------------ + +Try one of these: + + python setup.py install + + easy_install argparse + + pip install argparse + + putting argparse.py in some directory listed in sys.path should also work + + +Bugs +---- + +If you find a bug in argparse (pypi), please try to reproduce it with latest +python 2.7 and 3.4 (and use argparse from stdlib). + +If it happens there also, please file a bug in the python.org issue tracker. +If it does not happen there, file a bug in the argparse package issue tracker. + + + -- cgit v1.2.3