-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (49 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
56 lines (49 loc) · 1.15 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
[project]
name = "signalgate"
version = "1.0.3"
description = "SignalGate - internal semantic tier router proxy for OpenClaw"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "AGPL-3.0-or-later" }
classifiers = [
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
]
authors = [{ name = "ZeroSignal" }]
dependencies = [
"fastapi>=0.115",
"uvicorn>=0.30",
"httpx>=0.27",
"pydantic>=2.7",
"jsonschema>=4.22",
"orjson>=3.10",
"numpy>=2.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"ruff>=0.6",
"asgi-lifespan>=2.1",
]
embed = [
"llama-cpp-python>=0.3.0",
"anyio>=4.0",
]
[project.scripts]
signalgate = "signalgate.cli:main"
[build-system]
requires = ["hatchling>=1.25"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
asyncio_mode = "auto"
addopts = "-m 'not e2e' -ra"
markers = [
"unit: fast unit tests",
"integration: ASGI/in-process integration tests",
"regression: golden tests for routing stability",
"e2e: live upstream tests (requires API keys)",
]
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "B"]