File size: 898 Bytes
6bd3e57
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
cab995b
4fd28e1
6bd3e57
 
 
 
 
 
 
 
 
 
 
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
[project]
name = "sales-assistant-with-quote"
version = "1.0.0"
description = "A sales bot that can answer questions about products and provide quotes based on a database."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
    "pandas>=2.3.1",
    "pymysql>=1.1.1",
    "python-dotenv>=1.1.1",
    "sqlalchemy>=2.0.41",
    "sshtunnel>=0.4.0",
    "paramiko>=3.0.0,<4.0.0",
    # for jupyter notebooks
    "jupyter>=1.0.0",
    "ipykernel>=6.25.2",
    "langchain>=0.3.27",
    "langgraph>=0.6.5",
    "langchain-openai>=0.3.30",
    "langsmith>=0.2.13",
    "pydantic>=2.11.7",
    "huggingface-hub>=0.34.4",
    "langchain-huggingface>=0.3.1",
    "gradio>=5.44.0",
    "streamlit>=1.48.1",
]

[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"

[tool.setuptools.packages.find]
where = ["src"]

[tool.setuptools.package-dir]
"" = "src"