Skip to content

Commit

Permalink
Bug 894227 - Add configobj Python package; rs=glandium
Browse files Browse the repository at this point in the history
Version 4.7.2 added without modifications. Source obtained from PyPI.
  • Loading branch information
indygreg committed Jul 18, 2013
1 parent adffa8d commit 94f5794
Show file tree
Hide file tree
Showing 6 changed files with 4,050 additions and 0 deletions.
1 change: 1 addition & 0 deletions build/mach_bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
'python/mozboot',
'python/mozbuild',
'python/blessings',
'python/configobj',
'python/psutil',
'python/which',
'build/pymake',
Expand Down
1 change: 1 addition & 0 deletions build/virtualenv/packages.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
simplejson.pth:python/simplejson-2.1.1
marionette.pth:testing/marionette/client
blessings.pth:python/blessings
configobj.pth:python/configobj
mach.pth:python/mach
mozbuild.pth:python/mozbuild
pymake.pth:build/pymake
Expand Down
47 changes: 47 additions & 0 deletions python/configobj/PKG-INFO
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
Metadata-Version: 1.0
Name: configobj
Version: 4.7.2
Summary: Config file reading, writing and validation.
Home-page: http://www.voidspace.org.uk/python/configobj.html
Author: Michael Foord & Nicola Larosa
Author-email: [email protected]
License: UNKNOWN
Download-URL: http://www.voidspace.org.uk/downloads/configobj-4.7.2.zip
Description: **ConfigObj** is a simple but powerful config file reader and writer: an *ini
file round tripper*. Its main feature is that it is very easy to use, with a
straightforward programmer's interface and a simple syntax for config files.
It has lots of other features though :

* Nested sections (subsections), to any level
* List values
* Multiple line values
* Full Unicode support
* String interpolation (substitution)
* Integrated with a powerful validation system

- including automatic type checking/conversion
- and allowing default values
- repeated sections

* All comments in the file are preserved
* The order of keys/sections is preserved
* Powerful ``unrepr`` mode for storing/retrieving Python data-types

| Release 4.7.2 fixes several bugs in 4.7.1
| Release 4.7.1 fixes a bug with the deprecated options keyword in
| 4.7.0.
| Release 4.7.0 improves performance adds features for validation and
| fixes some bugs.
Keywords: config,ini,dictionary,application,admin,sysadmin,configuration,validation
Platform: UNKNOWN
Classifier: Development Status :: 6 - Mature
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
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: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Loading

0 comments on commit 94f5794

Please sign in to comment.