-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (51 loc) · 1.21 KB
/
pyproject.toml
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
[project]
name = "sql_agent"
version = "0.0.1"
description = "This is a lab to explore sql agents"
authors = [{ name = "Pilar Madariaga", email = "" }]
readme = "README.md"
keywords = ['python']
requires-python = ">=3.9,<4.0"
dependencies = [
"agno>=1.1.0",
"gradio>=4.44.1",
"ollama>=0.4.7",
#"google-search-results>=2.4.2",
"ipykernel>=6.29.5",
"ipywidgets>=8.1.5",
#"jupyter>=1.1.1",
#"langchain-community>=0.3.17",
#"langchain-huggingface>=0.1.2",
#"langchain-ollama>=0.2.3",
#"langgraph>=0.2.70",
#"markupsafe>=3.0.2",
#"numexpr>=2.10.2",
#"openpyxl>=3.1.5",
"pandas>=2.2.3",
"plotly>=6.0.0",
"python-dotenv>=1.0.1",
"sqlalchemy>=2.0.38",
"openai>=1.63.0",
]
[dependency-groups]
dev = [
"pytest>=7.2.0",
"pre-commit>=2.20.0",
"tox-uv>=1.11.3",
"mypy>=0.991",
"ruff>=0.9.2",
]
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[tool.mypy]
files = ["src"]
disallow_untyped_defs = true
disallow_any_unimported = true
no_implicit_optional = true
check_untyped_defs = true
warn_return_any = true
warn_unused_ignores = true
show_error_codes = true
[tool.pytest.ini_options]
testpaths = ["tests"]