Metadata-Version: 2.0
Name: settings-parser
Version: 1.0.0
Summary: settings_parser: Load, parse and validate user settings
Home-page: https://github.com/pedvide/settings_parser
Author: Pedro Villanueva Delgado
Author-email: pedvide@gmail.com
License: MIT
Keywords: settings configuration config validator parser
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: User Interfaces
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.6
Requires-Dist: ruamel-yaml
Provides-Extra: test
Requires-Dist: flake8; extra == 'test'
Requires-Dist: mypy; extra == 'test'
Requires-Dist: pytest; extra == 'test'
Requires-Dist: pytest-catchlog; extra == 'test'
Requires-Dist: pytest-cov; extra == 'test'
Requires-Dist: pytest-mock; extra == 'test'
Requires-Dist: pytest-xdist; extra == 'test'
Requires-Dist: python-coveralls; extra == 'test'

settings\_parser
================

Load and parse user settings

--------------

|License| |Python version| |Pypi version| |Anaconda version| |Build
Status| |Coverage Status|

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

Python 3.5 or 3.6 is required. Installing
`Anaconda <https://www.continuum.io/downloads>`__ is recommended; it
works with Windows (64/32 bits), Linux (64/32 bits) and Mac (64 bits).

After installing Anaconda execute the following commands at the command
prompt (cmd.exe for Windows, shell for Linux and Mac):

::

    conda config --add channels conda-forge
    conda config --add channels pedvide
    conda install settings_parser

(The first two commands add packages repositories with up-to-date
versions of all needed packages.)

or

::

    pip install settings_parser

That will download and install all necessary files.

Update
~~~~~~

If you installed it using conda, update with:

::

    conda update settings_parser

If you installed it with pip, update with:

::

    pip install -U settings_parser

Features
--------

Documentation
-------------

TODO
----

Bugs/Requests
-------------

Please use the `GitHub issue
tracker <https://github.com/pedvide/settings_parser/issues>`__ to submit bugs or
request features.

License
-------

Copyright Pedro Villanueva Delgado, 2017.

Distributed under the terms of the `MIT <LICENSE.txt>`__ license,
settings_parser is free and open source software.

.. |License| image:: https://img.shields.io/github/license/pedvide/settings_parser.svg
   :target: https://github.com/pedvide/settings_parser/blob/master/LICENSE.txt
.. |Python version| image:: https://img.shields.io/pypi/pyversions/settings_parser.svg
   :target: https://pypi.python.org/pypi/settings_parser
.. |Pypi version| image:: https://img.shields.io/pypi/v/settings_parser.svg
   :target: https://pypi.python.org/pypi/settings_parser
.. |Anaconda version| image:: https://anaconda.org/pedvide/settings_parser/badges/version.svg
   :target: https://anaconda.org/pedvide/settings_parser
.. |Build Status| image:: https://travis-ci.org/pedvide/settings_parser.svg?branch=master
   :target: https://travis-ci.org/pedvide/settings_parser
.. |Coverage Status| image:: https://coveralls.io/repos/github/pedvide/settings_parser/badge.svg?branch=master
   :target: https://coveralls.io/github/pedvide/settings_parser?branch=master


