Metadata-Version: 2.1
Name: paramap
Version: 0.1.1
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

[![PyPI version](https://badge.fury.io/py/paramap.svg)](https://badge.fury.io/py/paramap) [![Build Status](https://travis-ci.com/GrayTable/paramap.svg?branch=master)](https://travis-ci.com/GrayTable/paramap)

# Paramap

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

## Installation

```shell
$ pip install paramap
```

## 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
```


