Metadata-Version: 2.1
Name: fav_plots
Version: 0.0.5
Summary: package to make some favourite plots
Author-email: Mena Wang <ningwang25@gmail.com>
Project-URL: Homepage, https://github.com/MenaWANG/fav_plots
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE

I like data visualization that are both pretty and easy to understand. 

This package will include my favourite dataviz. 


## Installation

You can install this package by running

`pip install fav-plots`


## Development

Currently the package only has one simple function `add_one`, which can be called with code below

```
from fav_plots.utils import add_one
add_one(5) # this should return 6
```


## Unit test

* Create a virtual environment 
* Install unit requirements for local development and the project package in a developer mode:
    * `pip install -r unit-requirements.txt`
    * `pip install -e .`
* Run unit test
    * `pytest tests/unit --cov` 
