-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (40 loc) · 780 Bytes
/
Copy pathpyproject.toml
File metadata and controls
43 lines (40 loc) · 780 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
[project]
name = "good-student"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"fastapi>=0.116.1",
"pydantic>=2.11.9",
"pydantic-settings>=2.11.0",
"playwright>=1.58.0",
"uvicorn>=0.35.0",
"pytest-playwright>=0.7.2",
"ruff>=0.15.4",
"pre-commit>=4.5.1",
]
[tool.ruff]
line-length = 100
target-version = "py313"
exclude = [
"migrations",
"__pycache__",
".venv",
]
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"F", # pyflakes
"I", # isort
"B", # bugbear
"UP", # pyupgrade
"ASYNC", # async best practices
]
ignore = [
"E501",
]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
line-ending = "lf"