Fix using MANIFEST.in for wheel too

sdist always read MANIFEST.in, wheel used `package_data` setting.
fix_request_path_info
Diederik van der Boor 2016-09-02 12:40:58 +02:00
parent 1f1096046e
commit 741f7fdf5f
2 changed files with 2 additions and 6 deletions

View File

@ -3,4 +3,4 @@ include LICENSE
include DOCS.rst include DOCS.rst
include CHANGES.rst include CHANGES.rst
recursive-include polymorphic/static *.js *.css recursive-include polymorphic/static *.js *.css
recursive-include polymorphic/templates * recursive-include polymorphic/templates *.html

View File

@ -36,11 +36,7 @@ setup(
maintainer_email='tribaal@gmail.com', maintainer_email='tribaal@gmail.com',
packages=find_packages(), packages=find_packages(),
package_data={ include_package_data=True,
'polymorphic': [
'templates/admin/polymorphic/*.html',
],
},
test_suite='runtests', test_suite='runtests',