-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (39 loc) · 919 Bytes
/
pyproject.toml
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
[project]
name = "ci-relay"
version = "0.1.0"
description = ""
authors = [{ name = "Paul Gessinger", email = "[email protected]" }]
requires-python = ">=3.11"
dependencies = [
"aiohttp>=3.11.11",
"aiolimiter>=1.2.1",
"cachetools>=5.5.0",
"gidgethub>=5.3.0",
"gidgetlab>=2.0.1",
"pydantic>=2.10.6",
"pydantic-settings>=2.8.1",
"pysmee>=0.1.1",
"python-dateutil>=2.9.0.post0",
"python-dotenv>=1.0.1",
"sanic>=24.12.0",
"uvicorn>=0.34.0",
]
[tool.pyright]
exclude = [".venv"]
venvPath = "."
venv = ".venv"
[tool.uv]
dev-dependencies = [
"pytest>=8.3.5",
"ruff>=0.7.3",
"pytest-asyncio>=0.23.5",
"pytest-sanic>=1.9.1",
"sanic-testing>=24.6.0",
"pytest-aiohttp>=1.1.0",
"nox>=2025.2.9",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "function"