-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (31 loc) · 712 Bytes
/
pyproject.toml
File metadata and controls
37 lines (31 loc) · 712 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
[project]
name = "switchyard"
version = "0.1.12"
description = "Local Docker registry with async upstream sync"
requires-python = ">=3.14"
dependencies = [
"starlette>=1.0.0",
"granian[uvloop]>=2.7.2",
"httpx>=0.28.1",
"loguru>=0.7.3",
"pydantic-settings>=2.13.1",
]
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"respx>=0.22.0",
"ruff>=0.15.8",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
[project.scripts]
switchyard = "switchyard.__main__:main"
[build-system]
requires = ["uv_build>=0.11.3,<0.12"]
build-backend = "uv_build"
[tool.ruff]
line-length = 99
target-version = "py314"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]