I have a new library that has to include a lot of subfolders of small datafiles, and I\'m trying to add them as package data. Imagine I have my library as so:
Use glob to select all subfolders in your setup.py
... packages=['your_package'], package_data={'your_package': ['data/**/*']}, ...