Metadata-Version: 2.0
Name: aumbry
Version: 0.4.0
Summary: Multi-type configuration library for Python
Home-page: https://github.com/pyarmory/aumbry
Author: John Vrbanac
Author-email: john.vrbanac@linux.com
License: Apache v2
Keywords: configuration plugin multiple
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Dist: alchemize
Requires-Dist: pike
Requires-Dist: six
Provides-Extra: consul
Requires-Dist: requests; extra == 'consul'
Provides-Extra: etcd2
Requires-Dist: requests; extra == 'etcd2'
Provides-Extra: yaml
Requires-Dist: pyyaml; extra == 'yaml'

Aumbry
======

.. image:: https://travis-ci.org/pyarmory/aumbry.svg?branch=master
    :target: https://travis-ci.org/pyarmory/aumbry
    :alt: Travis CI Build

.. image:: http://codecov.io/github/pyarmory/aumbry/coverage.svg?branch=master
    :target: http://codecov.io/github/pyarmory/aumbry?branch=master
    :alt: Coverage

.. image:: https://readthedocs.org/projects/aumbry/badge/?version=latest
    :target: https://readthedocs.org/projects/aumbry/?badge=latest

.. image:: https://codeclimate.com/github/pyarmory/aumbry/badges/gpa.svg
   :target: https://codeclimate.com/github/pyarmory/aumbry
   :alt: Code Climate


Aumbry is general purpose library for handling configuration within your
Python applications. The project was born from constantly needing a simple
interface for configuration models that came from multiple data sources.

Behind the scenes, Aumbry uses Alchemize to handle the conversion of the
configuration data into application specific data models for your project.

**Data Sources supported:**

* File
* Consul
* Etcd2

**Configuration Formats Supported:**

* Yaml
* Json

Installation
------------

.. code-block:: shell

    # Install base package
    pip install aumbry

    # Install consul support
    pip install aumbry['consul']

    # Install etcd2 support
    pip install aumbry['etcd2']

    # Install yaml support
    pip install aumbry['yaml']


