update app.spec to include all uv packages.
This commit is contained in:
parent
24de1fc6d5
commit
4d194fec00
1 changed files with 2 additions and 1 deletions
3
app.spec
3
app.spec
|
|
@ -25,7 +25,7 @@ with open("./uv.lock", "rb") as f:
|
||||||
lock = tomllib.load(f)
|
lock = tomllib.load(f)
|
||||||
|
|
||||||
hidden = [
|
hidden = [
|
||||||
*lock.get("dependencies", {}).keys(),
|
*{pkg["name"] for pkg in lock.get("package", [])},
|
||||||
"aiohttp",
|
"aiohttp",
|
||||||
"socketio",
|
"socketio",
|
||||||
"engineio",
|
"engineio",
|
||||||
|
|
@ -63,5 +63,6 @@ exe = EXE( # type: ignore # noqa: F821
|
||||||
strip=False,
|
strip=False,
|
||||||
upx=True,
|
upx=True,
|
||||||
console=False,
|
console=False,
|
||||||
|
icon="ui/public/favicon.ico",
|
||||||
onefile=True,
|
onefile=True,
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue