summaryrefslogtreecommitdiff
path: root/.emacs.d.back/.python-environments/default/lib/python3.7/site-packages/argparse-1.4.0.dist-info
diff options
context:
space:
mode:
Diffstat (limited to '.emacs.d.back/.python-environments/default/lib/python3.7/site-packages/argparse-1.4.0.dist-info')
-rw-r--r--.emacs.d.back/.python-environments/default/lib/python3.7/site-packages/argparse-1.4.0.dist-info/DESCRIPTION.rst55
-rw-r--r--.emacs.d.back/.python-environments/default/lib/python3.7/site-packages/argparse-1.4.0.dist-info/INSTALLER1
-rw-r--r--.emacs.d.back/.python-environments/default/lib/python3.7/site-packages/argparse-1.4.0.dist-info/METADATA85
-rw-r--r--.emacs.d.back/.python-environments/default/lib/python3.7/site-packages/argparse-1.4.0.dist-info/RECORD9
-rw-r--r--.emacs.d.back/.python-environments/default/lib/python3.7/site-packages/argparse-1.4.0.dist-info/WHEEL6
-rw-r--r--.emacs.d.back/.python-environments/default/lib/python3.7/site-packages/argparse-1.4.0.dist-info/metadata.json1
-rw-r--r--.emacs.d.back/.python-environments/default/lib/python3.7/site-packages/argparse-1.4.0.dist-info/top_level.txt1
7 files changed, 158 insertions, 0 deletions
diff --git a/.emacs.d.back/.python-environments/default/lib/python3.7/site-packages/argparse-1.4.0.dist-info/DESCRIPTION.rst b/.emacs.d.back/.python-environments/default/lib/python3.7/site-packages/argparse-1.4.0.dist-info/DESCRIPTION.rst
new file mode 100644
index 00000000..12865ff4
--- /dev/null
+++ b/.emacs.d.back/.python-environments/default/lib/python3.7/site-packages/argparse-1.4.0.dist-info/DESCRIPTION.rst
@@ -0,0 +1,55 @@
+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.
+
+
+
diff --git a/.emacs.d.back/.python-environments/default/lib/python3.7/site-packages/argparse-1.4.0.dist-info/INSTALLER b/.emacs.d.back/.python-environments/default/lib/python3.7/site-packages/argparse-1.4.0.dist-info/INSTALLER
new file mode 100644
index 00000000..a1b589e3
--- /dev/null
+++ b/.emacs.d.back/.python-environments/default/lib/python3.7/site-packages/argparse-1.4.0.dist-info/INSTALLER
@@ -0,0 +1 @@
+pip
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.
+
+
+
diff --git a/.emacs.d.back/.python-environments/default/lib/python3.7/site-packages/argparse-1.4.0.dist-info/RECORD b/.emacs.d.back/.python-environments/default/lib/python3.7/site-packages/argparse-1.4.0.dist-info/RECORD
new file mode 100644
index 00000000..a1c72301
--- /dev/null
+++ b/.emacs.d.back/.python-environments/default/lib/python3.7/site-packages/argparse-1.4.0.dist-info/RECORD
@@ -0,0 +1,9 @@
+__pycache__/argparse.cpython-37.pyc,,
+argparse-1.4.0.dist-info/DESCRIPTION.rst,sha256=_wSTTIamPdyREfSSHUtRDgL0u1f2cU-fG3tufgwj928,1540
+argparse-1.4.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
+argparse-1.4.0.dist-info/METADATA,sha256=OVnr-7fAoUh5C7TqU-N_xmXD03JcaNjN31Q-wUitpN8,2792
+argparse-1.4.0.dist-info/RECORD,,
+argparse-1.4.0.dist-info/WHEEL,sha256=AvR0WeTpDaxT645bl5FQxUK6NPsTls2ttpcGJg3j1Xg,110
+argparse-1.4.0.dist-info/metadata.json,sha256=6BBrwOpKwMyufJMx0uLeBk18dogzU8O2YgTUSJHYlXA,1326
+argparse-1.4.0.dist-info/top_level.txt,sha256=TgiWrQsF0mKWwqS2KHLORD0ZtqYHPRGdCAAzKwtVvJ4,9
+argparse.py,sha256=0ksYqisQDQvhoiuo19JERCSpg51tc641GFJIx7pTA0g,89214
diff --git a/.emacs.d.back/.python-environments/default/lib/python3.7/site-packages/argparse-1.4.0.dist-info/WHEEL b/.emacs.d.back/.python-environments/default/lib/python3.7/site-packages/argparse-1.4.0.dist-info/WHEEL
new file mode 100644
index 00000000..9dff69d8
--- /dev/null
+++ b/.emacs.d.back/.python-environments/default/lib/python3.7/site-packages/argparse-1.4.0.dist-info/WHEEL
@@ -0,0 +1,6 @@
+Wheel-Version: 1.0
+Generator: bdist_wheel (0.24.0)
+Root-Is-Purelib: true
+Tag: py2-none-any
+Tag: py3-none-any
+
diff --git a/.emacs.d.back/.python-environments/default/lib/python3.7/site-packages/argparse-1.4.0.dist-info/metadata.json b/.emacs.d.back/.python-environments/default/lib/python3.7/site-packages/argparse-1.4.0.dist-info/metadata.json
new file mode 100644
index 00000000..156ccbef
--- /dev/null
+++ b/.emacs.d.back/.python-environments/default/lib/python3.7/site-packages/argparse-1.4.0.dist-info/metadata.json
@@ -0,0 +1 @@
+{"license": "Python Software Foundation License", "name": "argparse", "metadata_version": "2.0", "generator": "bdist_wheel (0.24.0)", "summary": "Python command-line parsing library", "platform": "any", "version": "1.4.0", "extensions": {"python.details": {"project_urls": {"Home": "https://github.com/ThomasWaldmann/argparse/"}, "document_names": {"description": "DESCRIPTION.rst"}, "contacts": [{"role": "author", "email": "tw@waldmann-edv.de", "name": "Thomas Waldmann"}]}}, "keywords": ["argparse", "command", "line", "parser", "parsing"], "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", "Programming Language :: Python :: 2", "Programming Language :: Python :: 3", "Programming Language :: Python :: 2.3", "Programming Language :: Python :: 2.4", "Programming Language :: Python :: 2.5", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.0", "Programming Language :: Python :: 3.1", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Topic :: Software Development"]} \ No newline at end of file
diff --git a/.emacs.d.back/.python-environments/default/lib/python3.7/site-packages/argparse-1.4.0.dist-info/top_level.txt b/.emacs.d.back/.python-environments/default/lib/python3.7/site-packages/argparse-1.4.0.dist-info/top_level.txt
new file mode 100644
index 00000000..1352d5e6
--- /dev/null
+++ b/.emacs.d.back/.python-environments/default/lib/python3.7/site-packages/argparse-1.4.0.dist-info/top_level.txt
@@ -0,0 +1 @@
+argparse