-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpyproject.toml
51 lines (45 loc) · 1.29 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "valentine"
version = "0.3.0"
description = "Valentine Matcher"
readme = "README.md"
authors = [
{ name = "Delft Data", email = "[email protected]" }
]
maintainers = [
{ name = "Delft Data", email = "[email protected]" }
]
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
requires-python = ">=3.9,<3.14"
dependencies = [
"numpy>=2.0,<3.0",
"pandas>=1.3,<2.3",
"nltk>=3.9.1,<4.0",
"anytree>=2.9,<3.0",
"networkx>=2.8,<4.0",
"chardet>=5.2.0,<6.0.0",
"jellyfish>=0.9,<1.2",
"PuLP>=2.5,<3.0",
"POT>=0.9.5,<1.0",
"python-dateutil>=2.8,<3.0"
]
[project.urls]
Homepage = "https://delftdata.github.io/valentine/"
Download = "https://github.com/delftdata/valentine/archive/refs/tags/v0.3.0.tar.gz"
[tool.setuptools]
packages = ["valentine"]
[tool.setuptools.package-data]
"valentine" = ["coma.jar"]