Metadata-Version: 2.1
Name: dft
Version: 0.1.17
Summary: DF Package
Home-page: https://github.com/TBD
Author: Data Facade
Author-email: info@data-facade.com
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

TBD
Following https://packaging.python.org/en/latest/tutorials/packaging-projects/ and 
https://dzone.com/articles/executable-package-pip-install
to create pip package for df_plot

```
python3 setup.py bdist_wheel
pip uninstall dist/dft-0.1-py3-none-any.whl
pip install dist/dft-0.1-py3-none-any.whl
python3 -m build
python3 -m twine upload --repository testpypi dist/*
python3 -m twine upload --repository pypi dist/*
```
