Metadata-Version: 2.1
Name: heater
Version: 0.0.1
Summary: heater makes heatmaps.
Home-page: UNKNOWN
License: UNKOWN
Author: Bogdan Popa
Author-email: popa.bogdanp@gmail.com
Requires-Python: >= 3.5.0.0, < 4.0.0.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Dist: cycler (>=0.10.0.0,<0.11.0.0)
Requires-Dist: matplotlib (>=2.2.0.0,<3.0.0.0)
Requires-Dist: numpy (>=1.14.0.0,<2.0.0.0)
Requires-Dist: pillow (>=5.1.0.0,<6.0.0.0)
Requires-Dist: pyparsing (>=2.2.0.0,<3.0.0.0)
Requires-Dist: python-dateutil (>=2.2.0.0,<3.0.0.0)
Description-Content-Type: text/markdown

# heater

heater makes heatmaps.  Inspired by heatmappy but more light weight.

## Installation

    pip install heater

## Usage

``` python
from heater import make_heatmap

with open("background.png") as f:
  heatmap = make_heatmap(f, [(1, 2), (3, 4)])
  heatmap.save("output.png")
```

## License

heater is licensed under Apache 2.0.  Please see
[LICENSE] for licensing details.

[LICENSE]: https://github.com/Bogdanp/heater/blob/master/LICENSE

