-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
92 lines (86 loc) · 1.9 KB
/
Copy pathpyproject.toml
File metadata and controls
92 lines (86 loc) · 1.9 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "querypilot"
version = "0.1.1"
description = "Eval-driven SQL reliability for AI agents."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [{ name = "Nicholas Klos", email = "nklos@inceptaanalytics.ai" }]
keywords = [
"sql",
"ai-agents",
"llm",
"safety",
"validation",
"evals",
"mcp",
"langchain",
"openai",
"anthropic",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Database",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
dependencies = [
"psycopg[binary]>=3.0",
"pydantic>=2.0",
"sqlalchemy>=2.0",
"sqlglot>=25.0",
]
[project.optional-dependencies]
dev = [
"fastapi>=0.115",
"httpx>=0.27",
"pytest>=8.0",
"pyyaml>=6.0",
]
server = [
"fastapi>=0.115",
"uvicorn>=0.30",
]
mcp = [
"mcp>=1.0",
]
openai = [
"openai>=1.0",
]
anthropic = [
"anthropic>=0.40",
]
llm = [
"openai>=1.0",
"anthropic>=0.40",
]
eval = [
"pyyaml>=6.0",
]
runtime = [
"fastapi>=0.115",
"uvicorn>=0.30",
"mcp>=1.0",
]
[project.urls]
Homepage = "https://github.com/nickklos10/QueryPilot"
Repository = "https://github.com/nickklos10/QueryPilot"
Issues = "https://github.com/nickklos10/QueryPilot/issues"
Documentation = "https://github.com/nickklos10/QueryPilot#readme"
Changelog = "https://github.com/nickklos10/QueryPilot/blob/main/CHANGELOG.md"
[project.scripts]
querypilot = "querypilot.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/querypilot"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]