I have a .txt.gz
in my repo which should part of a pypi package. When I publish a new pypi release and inspect the installed pacakge in my environment I can see that file is not part of the pacakge. Why isn't this file in the package?
Asked
Active
Viewed 16 times
0

Mike B
- 2,136
- 2
- 12
- 31
-
3Have you added it to your setup.py? [Adding static files](https://stackoverflow.com/questions/11848030/how-include-static-files-to-setuptools-python-package) – InsertCheesyLine Aug 01 '23 at 07:38
-
Thanks for you quick response @InsertCheesyLine. This is the answer I needed! Thx! – Mike B Aug 01 '23 at 07:39
-
I ended up adding a MANIFEST.in file in my repo – Mike B Aug 01 '23 at 10:04