Metadata-Version: 2.1
Name: manrag
Version: 0.0.1
Summary: ANOTHER big project.
Home-page: https://github.com/padipadou/package_manrag
Author: Francis
Author-email: francis@domain.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
Requires-Dist: pandas
Provides-Extra: dev
Requires-Dist: pytest ; extra == 'dev'

# Manrag
## installation
- build project
- build setup
- build wheel
```
python setup.py bdist_wheel
```
- gitignore.io
- choosealicense.com
- install
```
pip install -e .[dev]
```
- ```
python setup.py sdist 
```
## use
```
from manrag.helloworld import say_hello
print(say_hello("Francis"))
```

## misceleanous
- requirements.txt is specific to your machine and generated by `pip freeze > requirements.txt`
- install_requires should be flexible
- extras_requires should be specific
- extra requires for different metrics ?

