sql_data_analyst / pyproject.toml
YashashMathur's picture
SQL Data Analyst OpenEnv - Initial commit
d103a0f verified
raw
history blame
915 Bytes
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sql-data-analyst"
version = "1.0.0"
description = "SQL Data Analyst OpenEnv - RL environment for SQL query generation"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "Hackathon Team", email = "team@example.com"}
]
requires-python = ">=3.11"
dependencies = [
"openenv>=0.1.13",
"pydantic>=2.0",
"fastapi>=0.100",
"uvicorn>=0.20",
"openai>=1.0",
"faker>=18.0",
"pytest>=7.0",
]
[project.scripts]
openenv-sql-analyst = "server.app:main"
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-asyncio>=0.21",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["env*", "baseline*", "server*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]