zai2api / pyproject.toml
xiaoyi7894's picture
Deploy zai2api to Hugging Face Space
b65f9e0
raw
history blame contribute delete
498 Bytes
[project]
name = "zai2api"
version = "0.1.0"
description = "OpenAI-compatible completion server backed by Z.ai"
readme = "README.md"
authors = [
{ name = "orbitoo", email = "elbertoo001@gmail.com" }
]
requires-python = ">=3.12"
dependencies = [
"fastapi>=0.135.1",
"httpx>=0.28.1",
"uvicorn>=0.42.0",
]
[project.scripts]
zai2api = "zai2api:main"
[build-system]
requires = ["uv_build>=0.9.26,<0.10.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"pytest>=9.0.2",
]