forked from nettee/gemini-cli-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 735 Bytes
/
pyproject.toml
File metadata and controls
34 lines (31 loc) · 735 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
32
33
34
[project]
name = "qwen-code-proxy"
version = "1.0.0"
description = "OpenAI-compatible API wrapper for Qwen Code"
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "nettee" }
]
keywords = ["openai", "qwen", "api", "proxy", "cli"]
requires-python = ">=3.8"
dependencies = [
"fastapi>=0.104.0,<1.0",
"uvicorn[standard]>=0.24.0,<1.0",
"click>=8.0.0,<9.0",
"pydantic>=2.0.0,<3.0",
"slowapi>=0.1.9,<1.0",
]
[project.scripts]
qwen-code-proxy = "qwen_code_proxy.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"httpx>=0.24.0",
"build>=1.2.2.post1",
"twine>=6.1.0",
]