-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (65 loc) · 1.54 KB
/
Copy pathpyproject.toml
File metadata and controls
76 lines (65 loc) · 1.54 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[build-system]
requires = ["setuptools>=80.0"]
build-backend = "setuptools.build_meta"
[project]
name = "mapi"
version = "0.1.0"
description = "FastAPI toolkit for parsing, validating, diffing, compressing, and indexing compact venue row progression maps."
authors = [{ name = "Dillon Barendt" }]
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"fastapi[standard]>=0.139.0,<0.140.0",
"pydantic-ai-slim>=2.9.0,<3.0.0",
"pydantic-settings>=2.9.1,<3.0.0",
"uvicorn[standard]>=0.51.0,<0.52.0",
]
[tool.uv]
package = true
[tool.setuptools.package-dir]
"" = "src"
[tool.setuptools.packages.find]
where = ["src"]
include = ["mapi*"]
[tool.black]
line-length = 88
target-version = ["py313"]
[tool.isort]
profile = "black"
line_length = 88
[tool.ruff]
line-length = 88
target-version = "py313"
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP", "ANN"]
ignore = ["ANN201", "ANN202", "ANN401"]
[tool.mypy]
python_version = "3.13"
plugins = ["pydantic.mypy"]
strict = true
warn_unreachable = true
disallow_any_generics = false
mypy_path = "src"
[tool.pytest.ini_options]
addopts = "--strict-markers --strict-config"
testpaths = ["tests"]
[dependency-groups]
dev = [
"black>=26.5.1,<27.0.0",
"commitlint>=1.13.3",
"httpx>=0.28.1,<0.29.0",
"hypothesis>=6.156.4",
"isort>=8.0.1,<9.0.0",
"jinja2>=3.1.6",
"mypy>=2.2.0",
"pytest>=9.1.1",
"pytest-cov>=7.1.0,<8.0.0",
"ruff>=0.15.21",
]
docs = [
"mkdocs>=1.6.1",
"mkdocs-material>=9.7.6",
"mkdocs-mermaid2-plugin>=1.2.3",
"mkdocs-minify-plugin>=0.8.0",
]