forked from vllm-project/agentic-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (24 loc) · 829 Bytes
/
Copy pathpyproject.toml
File metadata and controls
28 lines (24 loc) · 829 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
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "agentic-api"
dynamic = ["version"]
description = "Agentic API gateway for OpenAI-compatible inference servers"
readme = "python/README.md"
requires-python = ">=3.10"
[project.urls]
Homepage = "https://vllm-project.github.io/agentic-api/"
Documentation = "https://vllm-project.github.io/agentic-api/docs/latest"
Repository = "https://github.com/vllm-project/agentic-api"
Issues = "https://github.com/vllm-project/agentic-api/issues"
[project.optional-dependencies]
local = ["vllm==0.11.0; platform_system == 'Linux'"]
[tool.maturin]
manifest-path = "crates/agentic-server/Cargo.toml"
bindings = "bin"
module-name = "agentic_api"
python-source = "python"
python-packages = ["agentic_api"]
data = "python/agentic_api.data"
strip = true