Skip to content

Commit c20a937

Browse files
committed
fix pyproject to include the jar in the wheel
1 parent cc0ed95 commit c20a937

1 file changed

Lines changed: 9 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ maintainers = [
1414
{ name = "Delft Data", email = "delftdatasystems@gmail.com" }
1515
]
1616
license = { file = "LICENSE" }
17+
keywords = ["matching", "valentine", "schema matching", "dataset discovery", "coma", "cupid", "similarity flooding"]
1718

1819
classifiers = [
1920
"License :: OSI Approved :: Apache Software License",
@@ -48,7 +49,13 @@ Source = "https://github.com/delftdata/valentine"
4849
Issues = "https://github.com/delftdata/valentine/issues"
4950

5051
[tool.setuptools]
51-
packages = ["valentine"]
52+
packages = { find = { include = ["valentine*"], exclude = ["tests*", "examples*"] } }
53+
include-package-data = true
54+
license-files = ["LICENSE"]
5255

56+
# include the JAR and license files in the wheel
5357
[tool.setuptools.package-data]
54-
"valentine" = ["coma.jar"]
58+
"valentine.algorithms.coma" = [
59+
"artifact/coma.jar",
60+
"licenses/*",
61+
]

0 commit comments

Comments
 (0)