-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (53 loc) · 1006 Bytes
/
pyproject.toml
File metadata and controls
62 lines (53 loc) · 1006 Bytes
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
[project]
name = "auth"
version = "0.1.0"
description = "PlaceBrain Smart Home Authentication Service"
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"alembic>=1.18.4",
"asyncpg>=0.31.0",
"bcrypt>=4.0.0",
"dishka>=1.7.2",
"greenlet>=3.3.0",
"grpcio>=1.76.0",
"aiosmtplib>=2.0.0",
"placebrain-contracts>=0.13.0",
"pydantic-settings>=2.12.0",
"pyjwt>=2.0.0",
"sqlalchemy>=2.0.45",
]
[tool.uv]
package = false
[dependency-groups]
dev = [
"mypy>=1.19.1",
"ruff>=0.14.10",
"watchfiles>=1.1.1",
]
[tool.ruff]
line-length = 100
target-version = "py314"
[tool.ruff.lint]
extend-select = ["I"]
select = [
"E",
"W",
"F",
"I",
"N",
"UP",
"B",
"C4",
]
ignore = []
[tool.ruff.lint.per-file-ignores]
"src/handlers/*.py" = ["N802"]
[tool.ruff.lint.isort]
known-first-party = ["src"]
[tool.mypy]
python_version = "3.14"
strict = true
[[tool.mypy.overrides]]
module = "grpc.*"
ignore_missing_imports = true