-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (39 loc) · 991 Bytes
/
Copy pathpyproject.toml
File metadata and controls
43 lines (39 loc) · 991 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
38
39
40
41
42
43
[project]
name = "waygate-worker"
version = "0.1.1"
description = "Shared worker runtime helpers for WayGate transports"
readme = "README.md"
authors = [
{ name = "Buck Brady", email = "22723438+voidrot@users.noreply.github.com" },
]
requires-python = ">=3.14"
dependencies = [
"fastapi>=0.118.0",
"nats-py>=2.11.0",
"pydantic>=2.13.2",
"pydantic-settings>=2.13.1",
"redis>=6.0.0",
"rq>=2.8.0",
"uvicorn>=0.37.0",
"waygate-core",
"waygate-workflows",
]
[tool.uv.sources]
waygate-core = { workspace = true }
waygate-workflows = { workspace = true }
[dependency-groups]
dev = ["pytest>=9.0.3", "pytest-cov>=7.1.0"]
[build-system]
requires = ["uv_build>=0.11.7,<0.12.0"]
build-backend = "uv_build"
[tool.pytest.ini_options]
minversion = "8.0"
testpaths = ["tests"]
python_files = ["test_*.py", "*_test.py"]
addopts = [
"-ra",
"--strict-config",
"--strict-markers",
"--cov=waygate_worker",
"--cov-report=term-missing",
]