-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (34 loc) · 856 Bytes
/
pyproject.toml
File metadata and controls
37 lines (34 loc) · 856 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
[build-system]
requires = ["uv_build>=0.8.22,<0.9.0"]
build-backend = "uv_build"
[project]
name = "sqlagent"
version = "2.0.0"
authors = [
{name="Bartosz Grabowski", email="58475557+bartosz-grabowski@users.noreply.github.com"},
]
description = "A lightweight open-source LLM agent connected to MySQL database"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"cryptography>=46.0.2",
"fastapi[standard]>=0.118.1",
"langchain>=1.0.7",
"langchain-community>=0.4.1",
"langchain-ollama>=1.0.0",
"langgraph>=1.0.3",
"ollama>=0.6.1",
"pymysql>=1.1.2",
]
license = "MIT"
license-files = ["LICENSE"]
classifiers = [
"Programming Language :: Python :: 3",
]
[project.urls]
Repository = "https://github.com/bartosz-grabowski/sqlagent.git"
[dependency-groups]
dev = [
"pytest>=9.0.0",
"ruff>=0.14.4",
]