File size: 558 Bytes
1b629b2 80d659d 1b629b2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | [build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "sqlite-rescue-env"
version = "1.0.0"
description = "A data engineering environment where an agent must rescue a messy SQLite database."
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"openenv-core>=0.1.0",
"pydantic>=2.0.0",
"openai>=1.0.0",
"fastapi>=0.100.0",
"uvicorn>=0.23.0"
]
[tool.setuptools]
packages = []
py-modules = ["env", "models", "graders", "inference"]
[project.scripts]
server = "server.app:main" |