1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
From: =?utf-8?q?Jeremy_B=C3=ADcha?= <jeremy.bicha@canonical.com>
Date: Wed, 24 Jan 2024 17:24:08 -0500
Subject: Remove dlls
Forwarded: not-needed
We don't install webview/lib because it's Windows only
and in debian/copyright Files-Excluded
---
pyproject.toml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pyproject.toml b/pyproject.toml
index 91cb902..7af31a7 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -73,7 +73,7 @@ line_length = 100
[tool.setuptools]
include-package-data = false
-packages = ["webview", "webview.dom", "webview.js", "webview.lib", "webview.platforms"]
+packages = ["webview", "webview.dom", "webview.js", "webview.platforms"]
[tool.setuptools.package-data]
"webview.lib" = ["**/*.dll", "**/*.jar"]
|