forked from opensanctions/yente
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (83 loc) · 2.2 KB
/
pyproject.toml
File metadata and controls
91 lines (83 loc) · 2.2 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "yente"
version = "5.3.0"
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.19.3",
"opensearch-py[async] == 3.1.0",
"uvicorn[standard] == 0.42.0",
"httpx[http2] == 0.28.1",
"aiohttp[speedups] == 3.13.5",
"boto3 ~= 1.37",
"fastapi == 0.135.2",
"python-multipart == 0.0.22",
"email-validator == 2.3.0",
"structlog == 25.5.0",
"pyicu == 2.16.2",
"pydantic",
"anyio == 4.13.0",
"orjson == 3.11.8",
"text-unidecode == 1.3",
"click >= 8.2,< 8.4",
"normality == 3.1.0",
"countrynames == 1.16.10",
"cryptography == 46.0.6",
"followthemoney == 4.7.0",
"fingerprints == 1.3.1",
"nomenklatura == 4.7.3",
"rigour == 1.7.5",
"asyncstdlib == 3.14.0",
"aiocron == 2.1",
"aiocsv == 1.4.0",
"aiofiles == 25.1.0",
"rich",
]
requires-python = ">=3.11,<=3.14"
[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"
[dependency-groups]
dev = [
"ruff",
"build",
"debugpy",
"mypy ~=1.13",
"pytest == 9.0.2",
"pytest-cov >= 6.0.0, < 8.0.0",
"pytest-asyncio >= 0.25.0, < 2.0.0",
"pytest-httpx >= 0.35.0, < 1.0.0",
"flake8 >= 2.6.0",
"types-aiofiles >=24.0,<26.0",
"boto3-stubs ~= 1.37",
"bump2version == 1.0.1",
"pip >10.0.0",
"prek",
"types-PyYAML",
]
docs = [
"pillow",
"cairosvg",
"mkdocs",
"mkdocs-macros-plugin",
"mkdocstrings[python]",
"mkdocs-material",
"mkdocs-redirects",
]
[tool.uv]
default-groups = ["dev", "docs"]
[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