-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (39 loc) · 912 Bytes
/
pyproject.toml
File metadata and controls
43 lines (39 loc) · 912 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
[tool.black]
line-length=120
[tool.mypy]
install_types = true
non_interactive = true
# メソッドの型を明示的に書くことを強制する
disallow_untyped_defs = true
disallow_untyped_calls = true
[tool.ruff]
line-length = 120
[project]
name = "learn-fast-api"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12.7"
dependencies = [
"fastapi==0.123.0",
"pydantic==2.12.5",
"uvicorn==0.40.0",
"mypy==1.18.2",
"black==25.9.0",
"ruff==0.14.7",
"boto3==1.40.30",
"botocore==1.40.42",
"boto3-stubs==1.40.30",
"botocore-stubs==1.40.30",
"sqlalchemy==2.0.45",
"aiomysql==0.3.2",
"pip>=24.3.1",
"types-greenlet>=3.2.0.20250417",
"types-jmespath>=1.0.2.20240106",
"types-requests>=2.32.0.20250328",
"types-ujson>=5.10.0.20250326",
]
[dependency-groups]
dev = [
"pytest>=8.3.5",
]