-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
87 lines (78 loc) · 2.18 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
79
80
81
82
83
84
85
86
87
[tool.poetry]
name = "ftmq"
version = "0.7.1"
description = "followthemoney query dsl and io helpers"
authors = ["Simon Wörpel <simon.woerpel@pm.me>"]
license = "MIT"
readme = "README.md"
homepage = "https://docs.investigraph.dev/lib/ftmq"
repository = "https://github.com/investigativedata/ftmq"
documentation = "https://docs.investigraph.dev/lib/ftmq"
classifiers = [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
packages = [{ include = "ftmq" }]
[tool.poetry.scripts]
ftmq = "ftmq.cli:cli"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/investigativedata/ftmq/issues"
[tool.poetry.dependencies]
python = ">=3.11,<4"
banal = "^1.0.6"
followthemoney = "^3.7.12"
orjson = "^3.10.3"
PyICU = "^2.13.1"
click = "^8.1.7"
click-default-group = "^1.2.4"
cryptography = ">=42.0.7,<45.0.0"
certifi = ">=2024.2.2"
pydantic = "^2.8.2"
alephclient = "^2.4.1"
pycountry = ">=23.12.11,<25.0.0"
urllib3 = "<3"
nomenklatura = "^3.14.0"
anystore = "^0.2.2"
structlog = "^24.4.0"
rigour = "^0.8.2"
redis = {version = "^5.2.1", optional = true}
plyvel = {version = "^1.5.1", optional = true}
sqlalchemy = {version = "^2.0.36", optional = true}
fakeredis = {version = "^2.26.2", optional = true}
[tool.poetry.extras]
sql = ["sqlalchemy"]
redis = ["redis", "fakeredis"]
level = ["plyvel"]
[tool.poetry.group.dev.dependencies]
pytest = ">=7.4.3,<9.0.0"
pytest-cov = ">=4.1,<7.0"
black = ">=23.11,<25.0"
isort = "^5.12.0"
mypy = "^1.7.0"
pre-commit = ">=3.5,<5.0"
flake8 = ">=6.1,<8.0"
ipdb = "^0.13.13"
bump2version = "^1.0.1"
cloudpickle = ">=2.2.1,<4.0.0"
pytest-env = "^1.1.1"
bump-pydantic = ">=0.7,<0.9"
mkdocs = "^1.6.1"
mkdocstrings-python = "^1.12.2"
mkdocs-autorefs = "^1.2.0"
mkdocs-material = "^9.5.47"
mkdocs-click = "^0.8.1"
# [tool.poetry.group.clickhouse.dependencies]
# ftm-columnstore = "^0.3.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
env = [
"DEBUG=1",
"NOMENKLATURA_STATEMENT_TABLE=test_table",
"MAX_SQL_AGG_GROUPS=11",
]