-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 969 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (30 loc) · 969 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
[project]
name = "coder-relay"
version = "0.8.1"
description = "Manage accounts, profiles, and API routes for coding-agent CLIs, with Codex support, automatic failover, and verified self-updates."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [{ name = "CoderRelay contributors" }]
keywords = ["codex", "claude-code", "coding-agent", "profile", "failover", "cli"]
dependencies = [
"httpx>=0.27",
"rich>=13.7",
"tomlkit>=0.13",
"typer>=0.12",
]
[project.urls]
Homepage = "https://github.com/Lortzing/CoderRelay"
Repository = "https://github.com/Lortzing/CoderRelay"
Issues = "https://github.com/Lortzing/CoderRelay/issues"
[project.optional-dependencies]
dev = ["pytest>=8"]
[project.scripts]
coder-relay = "coder_relay.entrypoint:main"
cdy = "coder_relay.entrypoint:main"
[build-system]
requires = ["uv_build>=0.10.0,<0.11.0"]
build-backend = "uv_build"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"