claudex/pyproject.toml
Nenad Ilic 57dac558f4 Prepare project for GitHub publishing
- Update README with detailed usage instructions
- Add GitHub community files (CONTRIBUTING, CODE_OF_CONDUCT, etc.)
- Set up CI workflows for automated testing
- Create CHANGELOG for version tracking
- Add SECURITY guidelines
- Update licensing and author information
2025-04-26 14:42:48 +02:00

24 lines
481 B
TOML

[project]
name = "claudex"
version = "0.1.0"
description = "Anthropic Claude/OpenRouter proxy toolkit for the CLI"
authors = [{ name="nenadilic84" }]
dependencies = [
"fastapi>=0.95.0",
"uvicorn[standard]>=0.23.0",
"httpx>=0.24.0",
"python-dotenv>=1.0.0",
"pydantic>=2.0.0"
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
[project.scripts]
claudex = "claudex.proxy:app"