Skip to content

Commit 96951cf

Browse files
authored
fixing package includes
1 parent e0de28b commit 96951cf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ include LICENSE
33
include requirements.txt
44
recursive-include ckanext/matolabtheme *.html *.json *.js *.less *.css *.mo *.yml
55
recursive-include ckanext/matolabtheme/migration *.ini *.py *.mako
6+
recursive-include ckanext/matolabtheme/public/static *.svg *.png

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,8 @@
3232
author_email="""[email protected]""",
3333
# Choose your license
3434
license="AGPL",
35-
package_data = {
36-
'ckanext/matolabtheme/public/static': ['*'],
37-
},
35+
packages=find_packages(),
36+
include_package_data=True,
3837
message_extractors={
3938
'ckanext': [
4039
('**.py', 'python', None),

0 commit comments

Comments
 (0)