-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
pyproject.toml
73 lines (65 loc) · 1.86 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
[tool.poetry]
name = "yente"
version = "4.2.0"
description = "A simple and fast API service for querying FollowTheMoney data, including OpenSanctions."
authors = ["OpenSanctions <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{ include = "yente", from = "." }]
[project.urls]
Documentation = "https://www.opensanctions.org/docs/yente/"
Repository = "https://github.com/opensanctions/yente.git"
Issues = "https://github.com/opensanctions/yente/issues"
[tool.poetry.scripts]
yente = "yente.cli:cli"
[tool.poetry.dependencies]
python = ">3.10.0,<3.13.0"
elasticsearch = { "extras" = ["async"], version = "8.16.0" }
opensearch-py = { "extras" = ["async"], version = "2.8.0" }
uvicorn = { "extras" = ["standard"], version = "0.32.1" }
httpx = { "extras" = ["http2"], version = "0.28.1" }
aiohttp = { "extras" = ["speedups"], version = "3.11.10" }
boto3 = "1.35.77"
fastapi = "0.115.6"
python-multipart = "0.0.19"
email-validator = "2.2.0"
structlog = "24.4.0"
pyicu = "2.14"
jellyfish = "1.1.2"
anyio = "4.7.0"
orjson = "3.10.12"
text-unidecode = "1.3"
click = "8.1.6"
normality = "2.5.0"
countrynames = "1.16.4"
fingerprints = "1.2.3"
pantomime = "0.6.1"
cryptography = "44.0.0"
followthemoney = "3.7.10"
nomenklatura = "3.14.0"
rigour = "0.8.1"
asyncstdlib = "3.13.0"
aiocron = "1.8"
aiocsv = "1.3.2"
aiofiles = "24.1.0"
[tool.poetry.group.dev.dependencies]
ruff = ">=0.4.0,<1.0.0"
mypy = "1.13.0"
pytest = "8.3.4"
pytest-cov = "6.0.0"
pytest-asyncio = "0.24.0"
pytest-httpx = "0.35.0"
flake8 = ">=2.6.0"
black = "24.10.0"
types-aiofiles = ">=24.0,<25.0"
boto3-stubs = "1.35.77"
bump2version = "1.0.1"
pip = ">10.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
filterwarnings = ["ignore:Elasticsearch built-in security:"]
asyncio_mode = "strict"
# asyncio_default_fixture_loop_scope=session
log_cli = true