Metadata-Version: 2.1
Name: configurator
Version: 0.5.0
Summary: A library for building a configuration store from one or more layered configuration sources
Home-page: https://github.com/Simplistix/configurator
Author: Chris Withers
Author-email: chris@withers.org
License: MIT
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Provides-Extra: build
Requires-Dist: sphinx ; extra == 'build'
Requires-Dist: pkginfo ; extra == 'build'
Requires-Dist: setuptools-git ; extra == 'build'
Requires-Dist: twine ; extra == 'build'
Requires-Dist: wheel ; extra == 'build'
Provides-Extra: test
Requires-Dist: jinja2 ; extra == 'test'
Requires-Dist: mock ; extra == 'test'
Requires-Dist: pytest ; extra == 'test'
Requires-Dist: pytest-cov ; extra == 'test'
Requires-Dist: testfixtures ; extra == 'test'
Requires-Dist: voluptuous ; extra == 'test'
Provides-Extra: toml
Requires-Dist: toml ; extra == 'toml'
Provides-Extra: yaml
Requires-Dist: pyyaml ; extra == 'yaml'


configurator
============

|CircleCI|_  |Docs|_

.. |CircleCI| image:: https://circleci.com/gh/Simplistix/configurator/tree/master.svg?style=shield
.. _CircleCI: https://circleci.com/gh/Simplistix/configurator/tree/master

.. |Docs| image:: https://readthedocs.org/projects/configurator/badge/?version=latest
.. _Docs: http://configurator.readthedocs.org/en/latest/

This is a Python library for building a configuration store
from one or more layered configuration sources.

It provides an easy interface for accessing configuration information
sourced from overlaid config files or mapped in from environment variables
or command line options.

Configuration information is also available as nested, simple python data types so that
you can validate the schema of your configuration using the tool of your choice.



