-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (25 loc) · 858 Bytes
/
Copy pathpyproject.toml
File metadata and controls
31 lines (25 loc) · 858 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
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "systemone"
version = "0.1.0"
description = "Jev's /v1/systemone typed-decision API (noul / choice / score) on any LLM served by vLLM or SGLang"
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.9"
dependencies = [] # the server is standard library only
[project.optional-dependencies]
bench = ["datasets"]
rlcd = ["torch", "transformers>=5.5", "peft", "trl", "accelerate", "datasets"]
vllm = ["vllm"]
[project.scripts]
systemone = "systemone.cli:main"
[tool.setuptools]
packages = ["systemone", "systemone.demo", "systemone.rlcd"]
[tool.setuptools.package-dir]
"systemone" = "src/systemone"
"systemone.demo" = "demo"
"systemone.rlcd" = "src/systemone/rlcd"
[tool.setuptools.package-data]
"systemone.demo" = ["web/*.html"]