grok2api / pyproject.toml
FUCAT's picture
fix: align dependencies with upstream (tiktoken, curl-cffi, cryptography, certifi, starlette, tomli-w) and use Python 3.13
3416ed9
Raw
History Blame Contribute Delete
1.07 kB
[project]
name = "grok2api"
version = "2.0.4"
description = "Grok2API for Hugging Face Spaces - OpenAI-compatible API gateway for Grok"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"aiohttp>=3.13.4",
"aiohttp-socks>=0.11.0",
"aiomysql>=0.2.0",
"aiosqlite>=0.20.0",
"asyncpg>=0.31.0",
"certifi>=2025.10.5",
"cryptography>=46.0.7",
"curl-cffi>=0.15.0",
"fastapi>=0.119.0",
"granian>=2.7.2",
"greenlet>=3.3.1",
"loguru>=0.7.3",
"orjson>=3.11.4",
"pydantic>=2.12.3",
"python-dotenv>=1.1.1",
"python-multipart>=0.0.26",
"redis>=6.4.0",
"sqlalchemy>=2.0.46",
"starlette>=0.48.0",
"tiktoken>=0.8.0",
"tomli-w>=1.2.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.24.0",
"black>=24.0.0",
"ruff>=0.8.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = []
[tool.black]
line-length = 100
target-version = ["py311"]
[tool.ruff]
line-length = 100
target-version = "py311"