Compare commits
3 commits
54ce5605c4
...
b009042241
Author | SHA1 | Date | |
---|---|---|---|
b009042241 | |||
add2ab42a7 | |||
b954650029 |
2 changed files with 4 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
#!/bin/bash
|
||||
# Giving pyinstaller another run
|
||||
rm $(find . -name "*.qmlc")
|
||||
rm $(find . -name "*.pyc")
|
||||
rm -rf $(find . -name "*.pyc")
|
||||
wine python -m pip install -U pyinstaller
|
||||
|
||||
# Building translations
|
||||
|
|
3
setup.py
3
setup.py
|
@ -78,6 +78,9 @@ def package_data():
|
|||
for d,folders,files in os.walk("LogarithmPlotter/qml"):
|
||||
d = d[17:]
|
||||
pkg_data += [os.path.join(d, f) for f in files]
|
||||
for d,folders,files in os.walk("LogarithmPlotter/i18n"):
|
||||
d = d[17:]
|
||||
pkg_data += [os.path.join(d, f) for f in files]
|
||||
return pkg_data
|
||||
|
||||
data_files = []
|
||||
|
|
Loading…
Reference in a new issue