File size: 529 Bytes
1b718b8 de07414 | 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 | [build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "sql-data-engineer-env"
version = "0.1.0"
description = "A real-world SQL data engineering environment for agent evaluation."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"openenv-core",
"fastapi",
"uvicorn",
"pydantic",
"openai",
"pandas"
]
[tool.setuptools.packages.find]
where = ["."]
include = ["server*"]
[project.scripts]
server = "server.app:main" |