1
0
mirror of https://github.com/janeczku/calibre-web synced 2025-12-14 03:48:05 +00:00

Modified build script to avoid warnings

This commit is contained in:
Ozzie Isaacs
2023-10-16 18:17:54 +02:00
parent 65f3ecb924
commit f0f8011d24
2 changed files with 8 additions and 4 deletions

View File

@@ -40,7 +40,8 @@ def find_version(*file_paths):
raise RuntimeError("Unable to find version string.")
setup(
packages=find_packages("src"),
package_dir = {'': 'src'},
#packages=find_packages("src"),
#package_dir = {'': 'src'},
#package_data={"calibreweb": ["cps/translations/*/LC_MESSAGES/*.mo"], "templates": ["*.html"]},
version=find_version("src", "calibreweb", "cps", "constants.py")
)