-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (63 loc) · 1.91 KB
/
Copy pathpyproject.toml
File metadata and controls
74 lines (63 loc) · 1.91 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "opencode-llmstack"
version = "0.12.0"
description = "Multi-tier local LLM stack: llama-swap + FastAPI auto-router + opencode wiring."
readme = "README.md"
requires-python = ">=3.11"
license = { file = "LICENSE" }
authors = [{ name = "llmstack" }]
keywords = ["llm", "llama-cpp", "llama-swap", "opencode", "router", "local-ai"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development",
]
dependencies = [
"fastapi>=0.110,<1.0",
"httpx>=0.27,<1.0",
"uvicorn[standard]>=0.30,<1.0",
"PyYAML>=6.0,<7.0",
"huggingface_hub>=1.0,<2.0",
"hf_transfer>=0.1,<1.0",
]
[project.optional-dependencies]
dev = [
"ruff>=0.4",
"pytest>=7",
]
litellm = [
"litellm[proxy]>=1.40",
]
[project.scripts]
llmstack = "llmstack.cli:main"
[project.urls]
Homepage = "https://github.com/rohitgarg19/llmstack"
Issues = "https://github.com/rohitgarg19/llmstack/issues"
[tool.setuptools.packages.find]
include = ["llmstack*"]
exclude = ["llmstack.bin*", "llmstack.tests*"]
[tool.setuptools.package-data]
llmstack = ["AGENTS.md", "models.ini", "litellm_config.yaml"]
[tool.setuptools.data-files]
"" = ["LICENSE", "CHANGELOG.md", "UPGRADING.md"]
[tool.pytest.ini_options]
testpaths = ["llmstack/tests"]
addopts = "-v"
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "B", "UP"]
ignore = ["E501"]