-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpyproject.toml
78 lines (71 loc) · 2.08 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
76
77
78
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "yente"
version = "4.2.1"
description = "A simple and fast API service for querying FollowTheMoney data, including OpenSanctions."
authors = [{ name = "OpenSanctions", email = "info@opensanctions.org" }]
license = { file = "LICENSE" }
readme = "README.md"
dependencies = [
"elasticsearch[async] == 8.17.1",
"opensearch-py[async] == 2.8.0",
"uvicorn[standard] == 0.34.0",
"httpx[http2] == 0.28.1",
"aiohttp[speedups] == 3.11.11",
"boto3 ~= 1.36.2",
"fastapi == 0.115.7",
"python-multipart == 0.0.20",
"email-validator == 2.2.0",
"structlog == 25.1.0",
"pyicu == 2.14",
"jellyfish == 1.1.3",
"anyio == 4.8.0",
"orjson == 3.10.15",
"text-unidecode == 1.3",
"click ~=8.1.8",
"normality == 2.6.1",
"countrynames == 1.16.6",
"fingerprints == 1.2.3",
"pantomime == 0.6.1",
"cryptography == 44.0.0",
"followthemoney == 3.8.0",
"nomenklatura == 3.15.1",
"rigour == 0.8.4",
"asyncstdlib == 3.13.0",
"aiocron == 1.8",
"aiocsv == 1.3.2",
"aiofiles == 24.1.0",
]
# packages = [{ include = "yente", from = "." }]
requires-python = ">=3.11,<=3.13"
[project.urls]
Documentation = "https://www.opensanctions.org/docs/yente/"
Repository = "https://github.com/opensanctions/yente.git"
Issues = "https://github.com/opensanctions/yente/issues"
[project.scripts]
yente = "yente.cli:cli"
[project.optional-dependencies]
dev = [
"ruff >=0.8.4,<1.0.0",
"build",
"mypy ~=1.13",
"pytest == 8.3.4",
"pytest-cov >= 6.0.0, < 7.0.0",
"pytest-asyncio >= 0.25.0, < 1.0.0",
"pytest-httpx == 0.35.0, < 1.0.0",
"flake8 >= 2.6.0",
"black ~= 24.10",
"types-aiofiles >=24.0,<25.0",
"boto3-stubs ~= 1.36.2",
"bump2version == 1.0.1",
"pip >10.0.0",
]
[tool.hatch.build.targets.sdist]
only-include = ["yente", "LICENSE", "README.md"]
[tool.pytest.ini_options]
filterwarnings = ["ignore:Elasticsearch built-in security:"]
asyncio_mode = "strict"
# asyncio_default_fixture_loop_scope=session
log_cli = true