-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpyproject.toml
75 lines (68 loc) · 1.87 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "nomenklatura"
version = "3.15.2"
description = "Make record linkages in followthemoney data."
readme = "README.md"
license = { file = "LICENSE" }
authors = [{ name = "OpenSanctions", email = "info@opensanctions.org" }]
classifiers = [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">= 3.11"
dependencies = [
"followthemoney >= 3.5.6, < 4.0.0",
"rigour >= 0.5.3, < 1.0.0",
"fingerprints >= 1.2.0, < 2.0.0",
"shortuuid >= 1.0.11, < 2.0.0",
"jellyfish >= 1.0.0, < 2.0.0",
"rich >= 10.9.0, < 14.0.0",
"textual >= 0.19.0, < 1.0.0",
"sqlalchemy >= 2.0.0",
"scikit-learn == 1.5.0",
"pydantic > 2.0.0, < 3.0.0",
"click < 9.0.0",
"lxml > 4.0.0, < 6.0.0",
]
[project.urls]
Documentation = "https://github.com/opensanctions/nomenklatura/"
Repository = "https://github.com/opensanctions/nomenklatura.git"
Issues = "https://github.com/opensanctions/nomenklatura/issues"
[project.scripts]
nk = "nomenklatura.cli:cli"
nomenklatura = "nomenklatura.cli:cli"
[project.optional-dependencies]
dev = [
"wheel>=0.29.0",
"twine",
"mypy",
"build",
"flake8>=2.6.0",
"pytest",
"pytest-cov",
"coverage>=4.1",
"types-setuptools",
"types-requests",
"types-redis",
"lxml-stubs",
"requests-mock",
"fakeredis",
"plyvel < 2.0.0",
"redis > 5.0.0, < 6.0.0",
"tantivy < 1.0.0",
]
leveldb = ["plyvel < 2.0.0"]
redis = ["redis > 5.0.0, < 6.0.0"]
tantivy = ["tantivy < 1.0.0"]
[tool.hatch.build.targets.sdist]
only-include = ["nomenklatura", "LICENSE", "README.md"]
[tool.distutils.bdist_wheel]
universal = true
[tool.coverage.run]
branch = true