Skip to content

Commit

Permalink
package_data does not work
Browse files Browse the repository at this point in the history
Apparently, using the `package_data` keyword is [not
reliable](http://blog.klinsight.com/2012/08/setuptools-includepackagedata-does-not.html),
It's pythonic, but it does not recursively grab the *.ui or *.ini files
down the project tree.
  • Loading branch information
kprussing committed Jun 18, 2015
1 parent abc1b83 commit ef0ce8e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
include *.pro *.txt *.ts VERSION
recursive-include vitables *.ico *.png *.qm *.svg
recursive-include vitables *.ico *.ini *.png *.qm *.svg *.ui
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,5 +66,4 @@ def read(fname):
'vitables.plugins.timeseries.time_series:TSFormatter')]
},
packages=find_packages(),
include_package_data=True,
package_data={'' : ['*.ui', '*.ini']},)
include_package_data=True,)

0 comments on commit ef0ce8e

Please sign in to comment.