-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (44 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
48 lines (44 loc) · 1.18 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
[project]
name = "juditha"
version = "4.3.0"
description = "A super-fast canonical name lookup service"
authors = [{ name = "Simon Wörpel", email = "simon.woerpel@pm.me" }]
license = "AGPLv3+"
readme = "README.md"
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",
]
requires-python = ">=3.11,<3.14"
dependencies = [
"anystore (>=1.1.4,<2.0.0)",
"followthemoney (>=4.6.0,<5.0.0)",
"ftmq[level] (>=4.6.0,<5.0.0)",
"tantivy (>=0.25.1,<0.26.0)",
"jellyfish (>=1.2.1,<2.0.0)",
"fasttext-numpy2 (>=0.10.4,<0.11.0)",
]
[project.scripts]
juditha = "juditha.cli:cli"
[tool.poetry.group.dev.dependencies]
black = "^26.1.0"
isort = "^7.0.0"
flake8 = "^7.3.0"
pre-commit = "^4.2.0"
bump2version = "^1.0.1"
pytest = "^9.0.2"
pytest-coverage = "^0.0"
pytest-env = "^1.6.0"
httpx = ">=0.25.0"
mypy = "^1.16.1"
uvicorn = "^0.40.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest_env]
DEBUG = 1
JUDITHA_URI = "memory://"