-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (41 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
43 lines (41 loc) · 1.07 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "db-agent-app"
version = "0.1.0"
description = "Database Analysis Agent - AI-powered natural language database querying"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"cryptography==41.0.7",
"dash==2.17.0",
"dash-bootstrap-components==1.5.0",
"dash-extensions==1.0.4",
"flask==2.3.3",
"gunicorn==21.2.0",
"lancedb>=0.24.3",
"langchain-community==0.3.21",
"langchain-openai>=0.2.0",
"openai==1.102.0",
"numpy==1.26.4",
"pandas==2.1.4",
"plotly==5.17.0",
"psycopg2-binary==2.9.9",
"pymysql==1.1.0",
"python-dotenv==1.0.0",
"requests==2.31.0",
"seaborn>=0.13.0",
"sqlalchemy==2.0.23",
"sqlfluff>=2.3.0",
"sqlglot>=20.0.0",
"langchain>=0.3.0",
"langgraph>=0.2.0",
"seaborn>=0.13.0",
"matplotlib>=3.8.0",
"langchain-groq>=0.3.7",
"sentence-transformers>=5.1.0",
"litellm>=1.76.1",
]
[tool.setuptools.packages.find]
include = ["database*", "services*"]