Fix using MANIFEST.in for wheel too
sdist always read MANIFEST.in, wheel used `package_data` setting.
This commit is contained in:
+1
-1
@@ -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
|
||||||
|
|||||||
@@ -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',
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user