temp / pyproject.toml
CheeksTheGeek's picture
Initial commit: LLM Code Deployment System
c5292d8 unverified
Raw
History Blame Contribute Delete
1.14 kB
[project]
name = "llm-code-deployment"
version = "1.0.0"
description = "LLM-powered code deployment and evaluation system for automated app building and testing"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"fastapi>=0.104.1",
"uvicorn[standard]>=0.24.0",
"anthropic>=0.34.0",
"openai>=1.3.0",
"pydantic>=2.5.0",
"pydantic-settings>=2.1.0",
"requests>=2.31.0",
"httpx>=0.25.0",
"PyGithub>=2.1.1",
"gitpython>=3.1.40",
"python-dotenv>=1.0.0",
"sqlalchemy>=2.0.23",
"alembic>=1.12.1",
"psycopg2-binary>=2.9.9",
"pyyaml>=6.0.1",
"jinja2>=3.1.2",
"playwright>=1.40.0",
"pandas>=2.1.3",
"beautifulsoup4>=4.12.2",
"tenacity>=8.2.3",
"uuid-utils>=0.9.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.3",
"pytest-asyncio>=0.21.1",
"black>=23.11.0",
"ruff>=0.1.6",
"mypy>=1.7.0",
]
[tool.black]
line-length = 100
target-version = ['py310']
[tool.ruff]
line-length = 100
select = ["E", "F", "I", "N", "W"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true