PKG-INFO 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. Metadata-Version: 1.1
  2. Name: configobj
  3. Version: 5.0.6
  4. Summary: Config file reading, writing and validation.
  5. Home-page: https://github.com/DiffSK/configobj
  6. Author: Rob Dennis, Eli Courtwright (Michael Foord & Nicola Larosa original maintainers)
  7. Author-email: rdennis+configobj@gmail.com, eli@courtwright.org, fuzzyman@voidspace.co.uk, nico@tekNico.net
  8. License: UNKNOWN
  9. Description: **ConfigObj** is a simple but powerful config file reader and writer: an *ini
  10. file round tripper*. Its main feature is that it is very easy to use, with a
  11. straightforward programmer's interface and a simple syntax for config files.
  12. It has lots of other features though :
  13. * Nested sections (subsections), to any level
  14. * List values
  15. * Multiple line values
  16. * Full Unicode support
  17. * String interpolation (substitution)
  18. * Integrated with a powerful validation system
  19. - including automatic type checking/conversion
  20. - and allowing default values
  21. - repeated sections
  22. * All comments in the file are preserved
  23. * The order of keys/sections is preserved
  24. * Powerful ``unrepr`` mode for storing/retrieving Python data-types
  25. | Release 5.0.6 improves error messages in certain edge cases
  26. | Release 5.0.5 corrects a unicode-bug that still existed in writing files
  27. | Release 5.0.4 corrects a unicode-bug that still existed in reading files after
  28. | fixing lists of string in 5.0.3
  29. | Release 5.0.3 corrects errors related to the incorrectly handling unicode
  30. | encoding and writing out files
  31. | Release 5.0.2 adds a specific error message when trying to install on
  32. | Python versions older than 2.5
  33. | Release 5.0.1 fixes a regression with unicode conversion not happening
  34. | in certain cases PY2
  35. | Release 5.0.0 updates the supported Python versions to 2.6, 2.7, 3.2, 3.3
  36. | and is otherwise unchanged
  37. | Release 4.7.2 fixes several bugs in 4.7.1
  38. | Release 4.7.1 fixes a bug with the deprecated options keyword in
  39. | 4.7.0.
  40. | Release 4.7.0 improves performance adds features for validation and
  41. | fixes some bugs.
  42. Keywords: config,ini,dictionary,application,admin,sysadmin,configuration,validation
  43. Platform: UNKNOWN
  44. Classifier: Development Status :: 6 - Mature
  45. Classifier: Intended Audience :: Developers
  46. Classifier: License :: OSI Approved :: BSD License
  47. Classifier: Programming Language :: Python
  48. Classifier: Programming Language :: Python :: 2
  49. Classifier: Programming Language :: Python :: 2.6
  50. Classifier: Programming Language :: Python :: 2.7
  51. Classifier: Programming Language :: Python :: 3
  52. Classifier: Programming Language :: Python :: 3.2
  53. Classifier: Programming Language :: Python :: 3.3
  54. Classifier: Operating System :: OS Independent
  55. Classifier: Topic :: Software Development :: Libraries
  56. Classifier: Topic :: Software Development :: Libraries :: Python Modules