anuma2api / pyproject.toml
li2895's picture
自包含构建源: app/registrar/scripts/pyproject + 修复 COPY 上下文
fa1140b
Raw
History Blame Contribute Delete
922 Bytes
[project]
name = "anuma2api"
version = "0.1.0"
description = "Anuma webchat → OpenAI/Anthropic-compatible local API gateway (2api)"
requires-python = ">=3.12"
dependencies = [
"fastapi>=0.115",
"httpx>=0.28",
"pydantic>=2.9",
"python-multipart>=0.0.32",
"tiktoken>=0.8",
"uvicorn[standard]>=0.30",
]
[project.optional-dependencies]
dev = [
"pytest>=8",
"pytest-asyncio>=0.23",
"ruff>=0.6",
"anthropic>=0.40",
"openai>=1.50",
]
registrar = [
"curl-cffi>=0.7",
"playwright>=1.48,<1.60",
"camoufox>=0.4",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["app", "registrar"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
pythonpath = ["."]
[tool.ruff]
line-length = 110
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP"]
ignore = ["E501"]