Metadata-Version: 2.1
Name: turpy
Version: 0.0.3
Summary: tools for python and fun coding
Home-page: https://github.com/drjobel/turpy
Author: José Beltrán
Author-email: drjobel.connection@gmail.com
Maintainer: José Beltrán
Maintainer-email: drjobel.connection@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: PyYAML (>=5.3.1)
Provides-Extra: dev
Requires-Dist: pytest (>=6.1.2) ; extra == 'dev'
Requires-Dist: twine (>=3.2.0) ; extra == 'dev'

# Turpy

This is an example project aim to collect useful code published as python module to PyPi.

It is unstable and API could change without a warning. 

## Installation

Run the following to install:

```python
pip install turpy
```

## Usage

```python
from turpy.io import load_yaml

# load a `yaml` file
my_dict = load_yaml(filepath='filepath/to/myfile.yaml>')

```

# Developing `turpy`

To install `turpy`, along with the tools you need to develop and run tests, rin the following in your virtualenv:

```bash
$ pip install -e .[dev]
``` 

