-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
67 lines (57 loc) · 1.46 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
[tool.poetry]
name = "mkdocs_sample"
version = "0.1.0"
authors = ["foo"]
description = ""
[tool.poetry.dependencies]
python = "^3.12.3"
#python = "^3.12.4"
[tool.poetry.group.dev.dependencies]
boto3 = "^1.34.55"
ruff = "^0.3.4"
datamodel-code-generator = "^0.25.5"
requests = "^2.31.0"
pytest = "^8.1.1"
pytest-cov = "^5.0.0"
pytest-env = "^1.1.3"
mypy = "^1.9.0"
case-converter = "^1.1.0"
pyyaml = "^6.0.1"
httpx = "^0.27.0"
boto3-stubs = "^1.34.74"
shandy-sqlfmt = "^0.21.2"
pytest-sqlalchemy-mock = "^0.1.5"
[tool.poetry.group.docs.dependencies]
mkdocs-material = "^9.5.15"
mkdocs-macros-plugin = "^1.0.5"
mkdocs-glightbox = "^0.3.7"
mkdocs-swagger-ui-tag = "^0.6.9"
mkdocs-static-i18n = "^1.2.2"
pymdown-extensions = "^10.7.1"
mkdocs-exclude = "^1.0.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest_env]
DB_NAME="main"
DB_USER="admin"
DB_PASS="password"
DB_HOST="localhost"
ENV="local"
[tool.pytest.ini_options]
testpaths = ["backend/tests"]
addopts = "-vv --cov=backend/api --cov-report=xml --cov-report=html"
filterwarnings = [
"ignore:The \\'app\\' shortcut is now deprecated. Use the explicit style \\'transport=WSGITransport\\(app=\\.\\.\\.\\)\\' instead\\.",
]
[tool.ruff]
line-length = 88
lint.unfixable = ["F401"]
[tool.mypy]
disallow-untyped-defs = true
show_error_context = true
show_column_numbers = true
ignore_missing_imports = true
no_implicit_optional = true
warn_return_any = true
check_untyped_defs = true