Spaces:
Running
Running
File size: 1,834 Bytes
210535c 2541228 210535c 2541228 210535c | 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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | [build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sql-query-optimizer-openenv"
version = "1.0.0"
description = "An OpenEnv environment where AI agents learn to review, rewrite, and optimise SQL queries for correctness and performance."
readme = "README.md"
requires-python = ">=3.10"
authors = [
{name = "metaXscaler", email = ""}
]
license = {text = "MIT"}
keywords = ["openenv", "sql", "optimization", "ml", "agent", "environment"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"fastapi>=0.111.0",
"uvicorn[standard]>=0.29.0",
"pydantic>=2.7.0",
"openai>=1.30.0",
"openenv-core>=0.2.0",
"pyyaml>=6.0",
]
[project.scripts]
server = "server.app:main"
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"black>=23.0",
"ruff>=0.1.0",
]
[project.urls]
Homepage = "https://huggingface.co/spaces"
Repository = "https://github.com/metaXscaler/sql-query-optimizer-openenv"
Documentation = "https://github.com/metaXscaler/sql-query-optimizer-openenv/blob/main/README.md"
[tool.black]
line-length = 100
target-version = ['py310', 'py311', 'py312']
[tool.ruff]
line-length = 100
target-version = "py310"
select = ["E", "F", "W"]
ignore = ["E501"] # Line too long (handled by black)
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
|