[setup] fix -> wrong style resources paths

This commit is contained in:
Vinicius Moreira
2021-01-30 08:45:42 -03:00
parent da4b8311fe
commit 829905f5c5
2 changed files with 6 additions and 1 deletions

View File

@@ -6,10 +6,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## [0.9.14] 2021 ## [0.9.14] 2021
### Fixes ### Fixes
- Installation setup
- wrong style resources paths
- Web - Web
- failing to install some applications when the expected temp directory does not exist - failing to install some applications when the expected temp directory does not exist
- using the old nativefier GitHub URL - using the old nativefier GitHub URL
## [0.9.13] 2021-01-20 ## [0.9.13] 2021-01-20
### Fixes ### Fixes
- missing Python hard dependency: **packaging** - missing Python hard dependency: **packaging**

View File

@@ -32,7 +32,7 @@ setup(
python_requires=">=3.5", python_requires=">=3.5",
url=URL, url=URL,
packages=find_packages(exclude=["tests.*", "tests"]), packages=find_packages(exclude=["tests.*", "tests"]),
package_data={NAME: ["view/resources/locale/*", "view/resources/img/*", "view/styles/*", 'view/styles/*/img/*', "gems/*/resources/img/*", "gems/*/resources/locale/*", "desktop/*"]}, package_data={NAME: ["view/resources/locale/*", "view/resources/img/*", "view/resources/style/*", 'view/resources/style/*/img/*', "gems/*/resources/img/*", "gems/*/resources/locale/*", "desktop/*"]},
install_requires=requirements, install_requires=requirements,
test_suite="tests", test_suite="tests",
entry_points={ entry_points={