-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (56 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
65 lines (56 loc) · 1.42 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
[tool.poetry]
name = "ndr"
version = "0.0.1"
description = "National Document Repository"
readme = "README.md"
packages = [{ include = "lambdas" }]
[tool.poetry.dependencies]
python = "^3.11.15"
ruff = "0.15.6"
ruff-lsp = "0.0.62"
[tool.poetry.group.test.dependencies]
pytest = "7.4.4"
pytest-cov = "4.1.0"
pytest-mock = "3.15.1"
pytest-unordered = "0.7.0"
requests-mock = "1.12.1"
freezegun = "1.5.5"
MarkupSafe = "2.1.5"
black = "26.3.1"
isort = "8.0.1"
pip-audit = "2.10.0"
syrupy = "4.9.1"
[tool.poetry.group.edge_lambda.dependencies]
boto3 = "1.42.68"
pydantic = "2.12.5"
PyJWT = "2.12.1"
inflection = "0.5.1"
[tool.poetry.group.alerting_lambda.dependencies]
PyJWT = "2.12.1"
boto3 = "1.42.68"
inflection = "0.5.1"
Jinja2 = "3.1.6"
pydantic = "2.12.5"
requests = "2.32.5"
[tool.poetry.group.core_lambda.dependencies]
PyJWT = { version = "2.12.1", extras = ["crypto"] }
boto3 = "1.42.68"
inflection = "0.5.1"
oauthlib = "3.3.1"
pydantic = { version = "2.12.5", extras = ["email"] }
pypdf = "6.9.1"
requests = "2.32.5"
regex = "2023.12.25"
pikepdf = "8.15.1"
[tool.poetry.group.data_lambda.dependencies]
polars = "1.31.0"
[tool.poetry.group.files_lambda.dependencies]
msoffcrypto-tool = "6.0.0"
[tool.poetry.group.reports_lambda.dependencies]
openpyxl = "3.1.5"
reportlab = "4.4.10"
pyzipper = "0.3.6"
[tool.isort]
profile = "black"
src_paths = ["lambdas"]
known_first_party = ["enums", "handlers", "models", "repositories", "services", "utils"]