Metadata-Version: 2.1
Name: paramap
Version: 0.1.0
Summary: Easily map flat dictionaries to object representations
Home-page: https://github.com/GrayTable/paramap
Author: Kamil Biel
Author-email: hello@kamilbiel.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# Paramap(Proof of Concept)

Paramap is an easy, declarative way to map flat parameter dictionaries to their object representation.

## Installation

```shell
$ pip install git+ssh://git@github.com/GrayTable/paramap.git
```

## Docs

[Documentation is hosted here](https://graytable.github.io/paramap).

## Running tests

Paramap uses `tox` for multi-version testing:

```
$ tox
```

If you don't want to use tox, simply run unittest command:

```
$ python3 -m unittest discover
```


