-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
75 lines (69 loc) · 2.05 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
[project]
name = "leakrfc"
version = "0.0.4"
description = "Data standard, storage and retrieval for leaks and document collections"
authors = [{ name = "Simon Wörpel", email = "[email protected]" }]
license = "AGPLv3+"
readme = "README.md"
classifiers = [
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"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,<4"
dependencies = [
"ftmq (>=0.8.0,<0.9.0)",
"anystore (>=0.3.0,<0.4.0)",
"rich (>=13.9.4,<14.0.0)",
"structlog (>=24.4.0,<25.0.0)",
"jinja2 (>=3.1.5,<4.0.0)",
"patool (>=3.1.0,<4.0.0)",
"pandas (>=2.2.3,<3.0.0)",
"alephclient (>=2.6.0,<3.0.0)",
]
[project.optional-dependencies]
api = [
"fastapi (>=0.115.6,<0.116.0)",
"uvicorn (>=0.34.0,<0.35.0)",
"pyjwt (>=2.10.1,<3.0.0)",
]
[project.scripts]
leakrfc = "leakrfc.cli:cli"
[project.urls]
Homepage = "https://docs.investigraph.dev/lib/leakrfc"
Documentation = "https://docs.investigraph.dev/lib/leakrfc"
Repository = "https://github.com/investigativedata/leakrfc"
Issues = "https://github.com/investigativedata/leakrfc/issues"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.2"
pytest-cov = ">=4.1,<7.0"
pytest-env = "^1.1.1"
black = ">=23.11,<25.0"
isort = "^5.12.0"
mypy = "^1.7.0"
pre-commit = "^4.0.1"
flake8 = ">=6.1,<8.0"
ipdb = "^0.13.13"
bump2version = "^1.0.1"
moto = "^5.0.11"
pytest-asyncio = ">=0.23.8,<0.25.0"
rangehttpserver = "^1.4.0"
httpx = ">=0.27.2,<0.29.0"
mkdocs-material = "^9.5.49"
mkdocs-click = "^0.8.1"
mkdocs-autorefs = "^1.2.0"
mkdocs-typer = "^0.0.3"
mkdocstrings-python = "^1.12.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest_env]
LEAKRFC_URI = "tests/fixtures/archive.yml"
AWS_SECRET_ACCESS_KEY = "leakrfc"
AWS_ACCESS_KEY_ID = "leakrfc"
DEBUG = 1
FSSPEC_S3_ENDPOINT_URL = ""