diff options
| author | K900 <me@0upti.me> | 2024-06-27 11:46:47 +0300 |
|---|---|---|
| committer | AAGaming <aagaming@riseup.net> | 2024-06-29 16:53:57 -0400 |
| commit | 5697d98862efa81a8ad3651e9ef68d754a58ea90 (patch) | |
| tree | d131979bb50d60dbeecf4699e5c0582d5bca400e /backend/pyproject.toml | |
| parent | 6cd4fb5553e4e0cb89834743286ec91fa8a02731 (diff) | |
| download | decky-loader-5697d98862efa81a8ad3651e9ef68d754a58ea90.tar.gz decky-loader-5697d98862efa81a8ad3651e9ef68d754a58ea90.zip | |
treewide: fix package structure
The static files need to be inside the module to be installed correctly
as part of the module.
Diffstat (limited to 'backend/pyproject.toml')
| -rw-r--r-- | backend/pyproject.toml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/backend/pyproject.toml b/backend/pyproject.toml index 0d5b65b0..a5474e6a 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -8,7 +8,10 @@ packages = [ {include = "decky_loader"}, {include = "decky_loader/main.py"} ] -include = ["decky_loader/static/*"] +include = [ + "decky_loader/locales/*", + "decky_loader/static/*" +] [tool.poetry.dependencies] python = ">=3.10,<3.13" |
