you'll need to have a manifest.in as mentioned in above answer, as well as you'll also need to add it to your setup.py by adding this param too:
include_package_data=True
so it will look something like:
setup(
....
packages=find_packages(),
include_package_data=True,
...
)