nl2sql-bench / pyproject.toml
ritvik360's picture
Upload folder using huggingface_hub
5a70e49 verified
raw
history blame contribute delete
882 Bytes
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.backends.legacy:build"
[project]
name = "nl2sql-bench"
version = "0.1.0"
description = "NL2SQL-Bench: Natural Language to SQL Analytics OpenEnv environment for RL training"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
dependencies = [
"openenv-core>=0.2.3",
"fastapi>=0.110.0",
"uvicorn[standard]>=0.29.0",
"pydantic>=2.0.0",
"openai>=1.0.0",
]
[project.scripts]
server = "server.app:main"
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-asyncio>=0.23",
"httpx>=0.27",
"black",
"ruff",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["nl2sql*", "server*"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.pytest.ini_options]
asyncio_mode = "auto"