Spaces:
Sleeping
Sleeping
File size: 1,138 Bytes
c5292d8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | [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
|