I spent significant time, finding solution to this one problem :
My setup.py is as follow :
install_requires=install_requires,
python_requires='>=3.6.5',
include_package_data=True,
#### CLI
scripts = scripts,
However, when pip install -e . , it does not copy into MYpackages/ the *.csv, *.txt files. How to add it ?
Following ressources were checked:
Is it possible to include csv file as part of python package
https://python-packaging.readthedocs.io/en/latest/non-code-files.html