-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (53 loc) · 1.49 KB
/
pyproject.toml
File metadata and controls
59 lines (53 loc) · 1.49 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
[project]
name = "python-template"
version = "0.1.0"
requires-python = ">=3.14"
dependencies = [
"asyncpg>=0.31.0",
"azure-monitor-opentelemetry>=1.8.6",
"fastapi[standard-no-fastapi-cloud-cli]>=0.135.1",
"pydantic>=2.12.5",
"wirio[azure-key-vault,fastapi,sqlmodel]>=0.18.0",
]
[dependency-groups]
dev = [
"jupyter>=1.1.1",
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"pytest-cov>=7.0.0",
"pytest-mock>=3.15.1",
"ruff>=0.15.6",
"ty>=0.0.23",
]
[build-system]
requires = ["uv_build>=0.10.7,<0.11.0"]
build-backend = "uv_build"
[tool.uv]
required-version = ">=0.10.7,<0.11.0"
[tool.ty.terminal]
error-on-warning = true
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"COM812", # missing-trailing-comma
"D100", # undocumented-public-module
"D101", # undocumented-public-class
"D102", # undocumented-public-method
"D103", # undocumented-public-function
"D104", # undocumented-public-package
"D105", # undocumented-magic-method
"D106", # undocumented-public-nested-class
"D107", # undocumented-public-init
"E501", # line-too-long
"ICN", # flake8-import-conventions
"S101", # assert
"TRY003", # raise-vanilla-args
"TC", # flake8-type-checking
"FBT001", # boolean-type-hint-positional-argument
"FBT002", # boolean-default-value-positional-argument
"PT013", # pytest-incorrect-pytest-import
]
[tool.pytest]
strict = true
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"