Metadata-Version: 2.1
Name: paraplot
Version: 0.1.0
Summary: Parameter retrieval and plotting
Home-page: https://github.com/cruisen/paraplot
License: MIT
Author: Nikolai von Krusenstiern
Requires-Python: >=3.7,<4.0
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: IPython (>=7.17.0,<8.0.0)
Requires-Dist: flask (>=1.1.2,<2.0.0)
Requires-Dist: json_minify (>=0.3.0,<0.4.0)
Requires-Dist: matplotlib (>=3.3.0,<4.0.0)
Requires-Dist: pandas (>=1.1.0,<2.0.0)
Requires-Dist: requests (>=2.24.0,<3.0.0)
Requires-Dist: requests_cache (>=0.5.2,<0.6.0)
Project-URL: Repository, https://github.com/cruisen/paraplot
Description-Content-Type: text/markdown

# paraplot

[![Build Status](https://travis-ci.com/cruisen/paraplot.svg?branch=master)](https://travis-ci.com/cruisen/paraplot)
[![Coverage](https://coveralls.io/repos/github/cruisen/paraplot/badge.svg?branch=master)](https://coveralls.io/github/cruisen/paraplot?branch=master)
[![Python Version](https://img.shields.io/pypi/pyversions/paraplot.svg)](https://pypi.org/project/paraplot/)
[![wemake-python-styleguide](https://img.shields.io/badge/style-wemake-000000.svg)](https://github.com/wemake-services/wemake-python-styleguide)

Parameter retrieval and plotting


## Features

- Fully typed with annotations and checked with mypy, [PEP561 compatible](https://www.python.org/dev/peps/pep-0561/)
- Add yours!


## Installation

```bash
pip install paraplot
```


## Example

Showcase how your project can be used:

```python
from paraplot.example import some_function

print(some_function(3, 4))
# => 7
```

## License

[MIT](https://github.com/cruisen/paraplot/blob/master/LICENSE)


## Credits

This project was generated with [`wemake-python-package`](https://github.com/wemake-services/wemake-python-package). Current template version is: [69435b231f7f398474073ac6dd14868dd3edf2c1](https://github.com/wemake-services/wemake-python-package/tree/69435b231f7f398474073ac6dd14868dd3edf2c1). See what is [updated](https://github.com/wemake-services/wemake-python-package/compare/69435b231f7f398474073ac6dd14868dd3edf2c1...master) since then.

