forked from alephdata/aleph
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
70 lines (66 loc) · 1.7 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
[tool.poetry]
name = "aleph"
version = "3.17.0"
description = "Search and browse documents and data; find the people and companies you look for."
authors = [
"Friedrich Lindenberg <friedrich@pudo.org>",
"OCCRP Data Team <data@occrp.org>",
"ID.IO <hi@investigativedata.org>"
]
license = "MIT"
readme = "README.rst"
[tool.poetry.scripts]
aleph = "aleph.manage:cli"
[tool.poetry.dependencies]
python = ">3.10,<3.14"
banal = "^1.0.6"
followthemoney = "^3.7.4"
followthemoney-store = { extras = ["postgresql"], version = "^3.1.0" }
fingerprints = "^1.2.3"
servicelayer = { extras = ["amazon"], version = "^1.23.1" }
normality = "^2.5.0"
pantomime = "^0.6.1"
Flask = "<3"
Flask-SQLAlchemy = "^3.1.1"
Flask-Mail = "^0.10.0"
Flask-Migrate = "^4.0.7"
Flask-Cors = "^5.0.0"
flask-babel = "^4.0.0"
flask-talisman = "^1.1.0"
SQLAlchemy = "^2.0.36"
alembic = "^1.14.0"
Authlib = "<1"
elasticsearch = "7.17.0"
marshmallow = "^3.23.1"
gunicorn = { extras = ["eventlet"], version = "^23.0.0" }
jsonschema = "^4.23.0"
apispec = "^6.7.1"
apispec-webframeworks = "^1.2.0"
blinker = "^1.9.0"
babel = "^2.16.0"
pyyaml = "^6.0.2"
python-frontmatter = "^1.1.0"
pyjwt = "^2.9.0"
cryptography = "^43.0.3"
requests = { extras = ["security"], version = "^2.32.3" }
tabulate = "^0.9.0"
zipstream-new = "^1.1.8"
sentry-sdk = "^2.18.0"
prometheus-client = "<0.21"
followthemoney-compare = "^0.4.4"
[tool.poetry.group.dev.dependencies]
factory-boy = "^3.3.1"
Faker = "^30.8.2"
pytest = "^8.3.3"
pytest-cov = "^6.0.0"
debugpy = "^1.8.8"
ipython = "^8.29.0"
coverage = "^7.6.4"
nose = "^1.3.7"
bump2version = "^1.0.1"
black = "^24.10.0"
ruff = "^0.7.3"
isort = "^5.13.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"