initial commit

This commit is contained in:
Bitdori (Admin) 2026-07-28 23:48:34 +09:00
commit 9a0e741ac7
12 changed files with 779 additions and 0 deletions

39
pyproject.toml Normal file
View file

@ -0,0 +1,39 @@
[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"