-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (34 loc) · 751 Bytes
/
pyproject.toml
File metadata and controls
40 lines (34 loc) · 751 Bytes
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
[project]
name = "agentic-text2sql"
version = "0.1.0"
description = "Agentic Text2SQL — Schema Retrieval MVP"
requires-python = ">=3.11"
dependencies = [
"sqlalchemy>=2.0",
"pydantic-ai-slim[anthropic]>=0.2",
"typer>=0.12",
"python-dotenv>=1.0",
"psycopg2-binary>=2.9",
"openai>=2.30.0",
"nltk>=3.9.4",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
]
[project.scripts]
text2sql = "cli:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["text2sql_mvp"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
[tool.uv]
dev-dependencies = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
]