-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (46 loc) · 1.88 KB
/
Copy pathpyproject.toml
File metadata and controls
51 lines (46 loc) · 1.88 KB
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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sqlas"
version = "2.8.0"
description = "SQLAS — SQL Agent Scoring Framework. Production-grade evaluation for Text-to-SQL and Agentic SQL agents with guardrail, visualization, agentic quality, and cache performance metrics."
readme = "README.md"
license = "MIT"
authors = [{name = "thepradip", email = "pradiptivhale@gmail.com"}]
requires-python = ">=3.10"
keywords = ["sql", "agent", "evaluation", "llm", "text-to-sql", "ragas", "mlflow", "benchmark", "monitoring"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Database",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Typing :: Typed",
]
dependencies = [
"sqlglot>=20.0",
]
[project.optional-dependencies]
mlflow = ["mlflow>=3.0"]
wandb = ["wandb>=0.16"]
langsmith = ["langsmith>=0.1"]
ui = ["streamlit>=1.30", "pandas>=2.0"]
benchmarks = [] # Spider/BIRD datasets downloaded separately
prometheus = ["prometheus-client>=0.19"]
dev = ["pytest>=7.0", "build", "twine"]
all = ["mlflow>=3.0", "wandb>=0.16", "langsmith>=0.1", "streamlit>=1.30", "pandas>=2.0"]
[project.urls]
Homepage = "https://github.com/thepradip/SQLAS"
Documentation = "https://github.com/thepradip/SQLAS#readme"
Repository = "https://github.com/thepradip/SQLAS"
Changelog = "https://github.com/thepradip/SQLAS/blob/main/CHANGELOG.md"
[tool.setuptools.packages.find]
include = ["sqlas*"]
[tool.setuptools.package-data]
sqlas = ["py.typed"]