-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 1.58 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (46 loc) · 1.58 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sqlmind"
version = "0.1.0"
description = "SQL intelligence layer for LLM agents — phase-locked generation, property graph schema, 10-dialect support"
authors = [{ name = "VeloceAI", email = "veloceai369@gmail.com" }]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.10"
keywords = ["sql", "llm", "agent", "text-to-sql", "adk", "mcp"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
]
dependencies = [
"pyyaml>=6.0",
"sqlglot>=26.0",
"fastmcp>=2.0",
]
[project.optional-dependencies]
db = ["sqlalchemy>=2.0"]
graph = ["networkx>=3.0"]
adk = ["google-adk>=1.0"]
openai = ["openai-agents>=0.1"]
langraph = ["langgraph>=0.3", "langchain>=0.3", "langchain-openai>=0.2"]
anthropic = ["langchain-anthropic>=0.3"]
all = ["sqlmind[db,graph,adk,openai,langraph,anthropic]"]
dev = ["pytest>=8.0", "pytest-asyncio>=0.24", "ruff>=0.4"]
[project.scripts]
sqlmind = "sqlmind_graph:main"
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
ignore = [
"E401", # multiple imports on one line (test files use `import pytest, sys`)
"E701", # multiple statements on one line — colon (intentional in tests)
"E702", # multiple statements on one line — semicolon
"E402", # module level import not at top (needed after sys.path.insert in integrations)
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]