PKG-INFO 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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. The program defines what arguments it requires, and argparse will figure out
  12. how to parse those out of sys.argv. The argparse module also automatically
  13. generates help and usage messages and issues errors when users give the
  14. program invalid arguments.
  15. As of Python >= 2.7 and >= 3.2, the argparse module is maintained within the
  16. Python standard library. For users who still need to support Python < 2.7 or
  17. < 3.2, it is also provided as a separate package, which tries to stay
  18. compatible with the module in the standard library, but also supports older
  19. Python versions.
  20. Also, we can fix bugs here for users who are stuck on some non-current python
  21. version, like e.g. 3.2.3 (which has bugs that were fixed in a later 3.2.x
  22. release).
  23. argparse is licensed under the Python license, for details see LICENSE.txt.
  24. Compatibility
  25. -------------
  26. argparse should work on Python >= 2.3, it was tested on:
  27. * 2.3, 2.4, 2.5, 2.6 and 2.7
  28. * 3.1, 3.2, 3.3, 3.4
  29. Installation
  30. ------------
  31. Try one of these:
  32. python setup.py install
  33. easy_install argparse
  34. pip install argparse
  35. putting argparse.py in some directory listed in sys.path should also work
  36. Bugs
  37. ----
  38. If you find a bug in argparse (pypi), please try to reproduce it with latest
  39. python 2.7 and 3.4 (and use argparse from stdlib).
  40. If it happens there also, please file a bug in the python.org issue tracker.
  41. If it does not happen there, file a bug in the argparse package issue tracker.
  42. Keywords: argparse command line parser parsing
  43. Platform: any
  44. Classifier: Development Status :: 5 - Production/Stable
  45. Classifier: Environment :: Console
  46. Classifier: Intended Audience :: Developers
  47. Classifier: License :: OSI Approved :: Python Software Foundation License
  48. Classifier: Operating System :: OS Independent
  49. Classifier: Programming Language :: Python
  50. Classifier: Programming Language :: Python :: 2
  51. Classifier: Programming Language :: Python :: 3
  52. Classifier: Programming Language :: Python :: 2.3
  53. Classifier: Programming Language :: Python :: 2.4
  54. Classifier: Programming Language :: Python :: 2.5
  55. Classifier: Programming Language :: Python :: 2.6
  56. Classifier: Programming Language :: Python :: 2.7
  57. Classifier: Programming Language :: Python :: 3.0
  58. Classifier: Programming Language :: Python :: 3.1
  59. Classifier: Programming Language :: Python :: 3.2
  60. Classifier: Programming Language :: Python :: 3.3
  61. Classifier: Programming Language :: Python :: 3.4
  62. Classifier: Topic :: Software Development