File size: 789 Bytes
72805b8 9caeadb 72805b8 9caeadb 72805b8 | 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 | [build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sql-arena"
version = "1.0.0"
description = "Interactive SQL query challenge OpenEnv environment"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
authors = [
{name = "Vudumula Naga Sai Rahul", email = "nagasairahulvudumula@gmail.com"}
]
dependencies = [
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
"pydantic>=2.5.0",
"websockets>=12.0",
"openai>=1.0.0",
"openenv-core>=0.2.0",
]
[project.scripts]
server = "src.sql_arena.server:main"
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"httpx>=0.25.0",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["src*"] |