-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (69 loc) · 2.21 KB
/
pyproject.toml
File metadata and controls
76 lines (69 loc) · 2.21 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
[project]
name = "ftm-analyze"
version = "5.3.0"
description = "Analyze FollowTheMoney entities"
authors = [
{ name = "Friedrich Lindenberg", email = "friedrich@pudo.org" },
{ name = "OCCRP Data Team", email = "data@occrp.org" },
{ name = "Data and Research Center", email = "hi@dataresearchcenter.org" },
]
license = "AGPLv3+"
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",
"Programming Language :: Python :: 3.14",
]
requires-python = ">=3.11,<3.14"
dependencies = [
"anystore (>=1.2.0,<2.0.0)",
"ftmq (>=4.8.2,<5.0.0)",
"pydantic (>=2.11.7,<3.0.0)",
"pydantic-settings (>=2.9.1,<3.0.0)",
"countrytagger (>=0.1.2,<0.2.0)",
"fasttext-numpy2 (>=0.10.4,<0.11.0)",
"juditha (>=4.4.0,<5.0.0)",
"rigour (>=2.1.1,<3.0.0)",
"followthemoney (>=4.8.4,<5.0.0)",
"schwifty (>=2026.3.0,<2027.0.0)",
"cachetools (<6)",
"geonames-tagger (>=1.0.2,<2.0.0)",
"spacy (>=3.8.11,<4.0.0)",
]
[project.optional-dependencies]
openaleph = ["openaleph-procrastinate (>=5.3.0,<6.0.0)"]
ner-flair = ["flair (>=0.15.1,<0.16.0)"]
ner-gliner = ["gliner (>=0.2,<1.0)"]
ner-spacy = ["spacy (>=3.8.7,<4.0.0)"]
ner-transformers = ["transformers (>=4.57.1,<5.0.0)"]
[project.scripts]
ftm-analyze = "ftm_analyze.cli:cli"
[project.urls]
Homepage = "https://docs.investigraph.dev/lib/ftm-analyze"
Documentation = "https://docs.investigraph.dev/lib/ftm-analyze"
Repository = "https://github.com/dataresearchcenter/ftm-analyze"
Issues = "https://github.com/dataresearchcenter/ftm-analyze/issues"
[tool.poetry.group.dev.dependencies]
pytest = "^9.0.3"
pytest-cov = ">=7.1.0,<8.0"
pytest-env = "^1.1.1"
black = ">=26.5.1,<27.0"
isort = "^8.0.1"
mypy = "^2.1.0"
pre-commit = "^4.0.1"
flake8 = ">=6.1,<8.0"
ipdb = "^0.13.13"
bump2version = "^1.0.1"
griffe-pydantic = "^1.1.6"
zensical = "^0.0.43"
[tool.poetry.requires-plugins]
poetry-plugin-export = ">=1.8"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest_env]
DEBUG = 1
FTM_ANALYZE_ANNOTATE = 1