I have a Django reusable app, and I am trying to distribute all the static content (html templates etc). After some googling I found out about MANIFEST.in files here.
I found a similar project here that I used for reference:
recursive-include allauth *.html *.txt *.xml *.po *.mo *.js
Here is the contents of my MANIFEST.in:
recursive-include auth_backend *.html *.scss *.css *.jpg *.png *.js
I pushed it to Pypi and installed, but there are no static files. Here is the source.
What am I doing wrong?
Update: If I download the package as a zip file straight from pypi the templates are included, so it seems the problem is now with pip install...