-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 761 Bytes
/
pyproject.toml
File metadata and controls
41 lines (35 loc) · 761 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
[project]
name = "python-deep"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"asyncio>=4.0.0",
"fastapi>=0.135.1",
"httpx>=0.28.1",
"pydantic>=2.12.5",
"pydantic-settings>=2.13.1",
"redis>=7.2.1",
"sqlalchemy>=2.0.48",
]
[dependency-groups]
dev = [
"alembic>=1.17.1",
"hypothesis>=6.147.0",
"pytest>=9.0.2",
"ruff>=0.15.4",
"ty>=0.0.20",
]
[tool.ty.rules]
all = "error"
[tool.ty.analysis]
respect-type-ignore-comments = false
[tool.ruff]
target-version = "py314"
[tool.ruff.lint]
select = ["F", "I", "B", "ANN"]
[tool.ruff.lint.flake8-annotations]
allow-star-arg-any = false
ignore-fully-untyped = false
mypy-init-return = true