[build-system] requires = ["setuptools>=68", "wheel"] build-backend = "setuptools.backends.legacy:build" [project] name = "self-improving-sql-agent" version = "1.0.0" description = "A SQL generation environment that learns from its own mistakes — LinUCB contextual bandit + GEPA prompt evolution + self-debug loop." readme = "README.md" requires-python = ">=3.10" license = { text = "MIT" } dependencies = [ "fastapi>=0.115.0", "uvicorn[standard]>=0.30.0", "openai>=1.40.0", "pydantic>=2.8.0", "numpy>=1.26.0", "aiofiles>=24.0.0", "python-multipart>=0.0.9", "sse-starlette>=2.1.0", "aiosqlite>=0.20.0", "psycopg2-binary>=2.9.0", "openenv-core>=0.2.0", ] [project.scripts] server = "server.app:main" [project.urls] Homepage = "https://huggingface.co/spaces/ar9av/sql-agent-openenv" Repository = "https://github.com/Ar9av/sql-agent-openenv" [tool.setuptools.packages.find] where = ["."] include = ["server*"]