79114995

Date: 2024-10-22 16:23:01
Score: 1
Natty:
Report link

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,
    ...
)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: iamDyeus