CoolFace
Apppublic

ritvik360/nl2sql-bench

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes
pyproject.toml41 linesDownload Raw Back to root
1[build-system]2requires = ["setuptools>=69", "wheel"]3build-backend = "setuptools.backends.legacy:build"4 5[project]6name            = "nl2sql-bench"7version         = "0.1.0"8description     = "NL2SQL-Bench: Natural Language to SQL Analytics OpenEnv environment for RL training"9readme          = "README.md"10requires-python = ">=3.10"11license         = { text = "MIT" }12dependencies = [13    "openenv-core>=0.2.3",14    "fastapi>=0.110.0",15    "uvicorn[standard]>=0.29.0",16    "pydantic>=2.0.0",17    "openai>=1.0.0",18]19 20[project.scripts]21server = "server.app:main"22 23[project.optional-dependencies]24dev = [25    "pytest>=7.0",26    "pytest-asyncio>=0.23",27    "httpx>=0.27",28    "black",29    "ruff",30]31 32[tool.setuptools.packages.find]33where = ["."]34include = ["nl2sql*", "server*"]35 36[tool.ruff]37line-length = 10038target-version = "py310"39 40[tool.pytest.ini_options]41asyncio_mode = "auto"