-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (47 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
56 lines (47 loc) · 1.13 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
[project]
name = "open-data-agent"
version = "0.1.0"
description = "AI-augmented data agent CLI for natural language database querying"
requires-python = ">=3.12"
dependencies = [
"click==8.3.1",
"rich==14.3.3",
"pyyaml>=6.0",
"psycopg[binary]>=3.1",
"pymysql>=1.1",
"keyring>=25.0",
]
[project.scripts]
oda = "open_data_agent.cli:cli"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/open_data_agent"]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"integration: marks tests as integration tests requiring live DB (deselect with '-m \"not integration\"')",
]
addopts = "-m 'not integration'"
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
ignore = ["E501"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.mypy]
python_version = "3.12"
strict = true
[dependency-groups]
dev = [
"pytest==9.0.2",
"pytest-cov>=7.0.0",
"ruff>=0.15.5",
"mypy>=1.10",
"types-pyyaml>=6.0.12.20250915",
"types-pymysql>=1.1.0.20251220",
]