-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 1.23 KB
/
Copy pathpyproject.toml
File metadata and controls
47 lines (41 loc) · 1.23 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "llm-server"
version = "0.1.0"
description = "OpenAI-compatible HTTP wrapper for the llm library"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "GPL-3.0-or-later"}
dependencies = [
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
"pydantic>=2.0.0",
"pydantic-settings>=2.0.0",
"llm>=0.19.0",
"llm-vertex",
"llm-gemini",
"llm-openrouter",
"llm-anthropic",
"json-five>=1.1.1", # For parsing/writing VS Code JSONC settings with round-trip comment preservation
"pystemd>=0.10.0", # For systemd service management
"python-daemon>=3.0.0", # For daemonization (PEP 3143)
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"httpx>=0.25.0",
]
[project.scripts]
llm-server = "llm_server.main:run"
configure-vscode = "configure_vscode:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["llm_server*"]
[tool.setuptools]
py-modules = ["configure_vscode"]
[tool.uv.sources]
llm = { git = "https://github.com/c0ffee0wl/llm" }
llm-vertex = { git = "https://github.com/c0ffee0wl/llm-vertex" }
llm-gemini = { git = "https://github.com/c0ffee0wl/llm-gemini" }