-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
80 lines (60 loc) · 1.49 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
76
77
78
79
80
[tool.poetry]
name = "moshan"
version = "0.1.0"
description = ""
authors = ["fulder <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.group.dev.dependencies]
boto3 = "^1.35.0"
httpx = "^0.28.1"
[tool.poetry.group.pytest]
optional = true
[tool.poetry.group.pytest.dependencies]
pytest = "^8.3.4"
pytest-cov = "^6.0.0"
pytest-html = "^4.1.1"
pytest-mock = "^3.14.0"
[tool.poetry.group.lint]
optional = true
[tool.poetry.group.lint.dependencies]
black = "^24.10.0"
isort = "^5.13.2"
flake8 = "^7.1.1"
[tool.poetry.group.layers-api]
optional = true
[tool.poetry.group.layers-api.dependencies]
requests = "^2.32.3"
[tool.poetry.group.layers-databases]
optional = true
[tool.poetry.group.layers-databases.dependencies]
python-dateutil = "^2.9.0"
dynamodb-json = "^1.4"
[tool.poetry.group.layers-fastapi]
optional = true
[tool.poetry.group.layers-fastapi.dependencies]
fastapi = "^0.115.6"
fastapi-utils = "^0.8.0"
mangum = "^0.19.0"
pydantic = "^2.10.4"
typing-inspect = "^0.9.0"
[tool.poetry.group.layers-utils]
optional = true
[tool.poetry.group.layers-utils.dependencies]
loguru = "^0.7.3"
[tool.poetry.group.api]
optional = true
[tool.poetry.group.api.dependencies]
pyjwt = "^2.10.1"
requests = "^2.31.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = "--cov-report html --cov=src -vv"
[tool.isort]
profile = "black"
[tool.black]
line-length = 80
experimental-string-processing = true