Fix using MANIFEST.in for wheel too
sdist always read MANIFEST.in, wheel used `package_data` setting.fix_request_path_info
parent
1f1096046e
commit
741f7fdf5f
|
|
@ -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
|
||||||
|
|
|
||||||
6
setup.py
6
setup.py
|
|
@ -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',
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue