free-claude-code/pyproject.toml
Ahmet Kaplan 414781850a
Change requires-python to >=3.14.2
Updated Python version requirement to allow newer versions.
2026-02-15 23:22:44 +03:00

29 lines
662 B
TOML

[project]
name = "free-claude-code"
version = "2.0.0"
description = "Middleware between Claude Code CLI (Anthropic API) and NVIDIA NIM"
readme = "README.md"
requires-python = ">=3.14.2"
dependencies = [
"fastapi[standard]>=0.115.11",
"uvicorn>=0.34.0",
"httpx>=0.25.0",
"markdown-it-py>=3.0.0",
"pydantic>=2.0.0",
"python-dotenv>=1.0.0",
"tiktoken>=0.7.0",
"websockets>=13.0",
"python-telegram-bot>=21.0",
"pydantic-settings>=2.12.0",
"openai>=2.16.0",
"loguru>=0.7.0",
]
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"pytest-cov>=7.0.0",
"ty>=0.0.1",
"ruff>=0.9.0",
]