Metadata-Version: 2.1
Name: diamond-f
Version: 2.0.0
Summary: A small package to test diamond dependencies
Home-page: https://github.com/thibaultduponchelle/diamond-f
Author: Thibault Duponchelle
Author-email: thibault.duponchelle@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/thibaultduponchelle/diamond-f/issues
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
License-File: LICENSE

# Diamond F

A module to test diamond dependencies

## Install
```bash
$ python3 -m pip install diamond-f
```

## Usage 
```python3
from diamond import f

f.f()
```

OR

```python3
from diamond.f import f

f()
```


