-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (29 loc) · 832 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (29 loc) · 832 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
[project]
name = "yt-studio"
version = "0.1.0"
description = "YT-Studio Python tooling"
requires-python = ">=3.12"
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "C", "N", "UP", "B", "A", "COM", "PT", "Q", "RET", "SIM", "TID", "ARG", "PTH", "RUF", "PD"]
ignore = ["E501", "COM812"] # line too long, handled by formatter
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.mypy]
python_version = "3.12"
strict = true
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = false
[tool.pytest.ini_options]
minversion = "8.0"
addopts = "-ra -q --strict-markers --cov=. --cov-report=term-missing"
testpaths = ["tests"]
[tool.pydocstyle]
convention = "google"
add-ignore = "D100,D104"