So yeah, according to the 0.3.1 tag the templates/sniplates/django.html file should be part of the release, but it wasn't.
The following patch fixes that.
Used check-manifest (pip install) to generate the MANIFEST.in of what should definitely be in the sdist.
To check it works:
run setup.py build and run tree build
run pip install wheel
setup.py bdist_wheel
rename the .whl file to .zip and unzip it, and then tree the directory extracted.
So yeah, according to the
0.3.1
tag thetemplates/sniplates/django.html
file should be part of the release, but it wasn't.The following patch fixes that. Used
check-manifest
(pip install
) to generate the MANIFEST.in of what should definitely be in the sdist. To check it works:setup.py build
and runtree build
pip install wheel
setup.py bdist_wheel
.whl
file to.zip
and unzip it, and thentree
the directory extracted.