39 lines
576 B
TOML
39 lines
576 B
TOML
[project]
|
|
name = "api"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
requires-python = ">=3.14"
|
|
dependencies = []
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"basedpyright>=1.39.9",
|
|
"black>=26.5.1",
|
|
"ruff>=0.16.0",
|
|
]
|
|
|
|
[tool.pytest]
|
|
addopts = ["--import-mode=importlib"]
|
|
minversion = "9.0"
|
|
pythonpath = ["src"]
|
|
|
|
[tool.ruff]
|
|
line-length = 88
|
|
target-version = "py313"
|
|
|
|
[tool.ruff.lint]
|
|
select = [
|
|
"E",
|
|
"F",
|
|
"I",
|
|
"UP",
|
|
"B",
|
|
]
|
|
|
|
[tool.ruff.lint.isort]
|
|
known-first-party = ["api"]
|
|
|
|
[tool.ruff.format]
|
|
quote-style = "double"
|
|
indent-style = "space"
|