I have this in my MANIFEST.in
recursive-include tables *.csv
and I can see the folder included in the created .tar.gz
/mypackage-0.0.1
/mypackage
/mypackage.egg-info
/tables
but I can't find my folder once I install the package with:
pip install mypackage-0.0.1.tar.gz
or
easy_install mypackage-0.0.1.tar.gz
Any clue?