-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
51 lines (47 loc) · 1.08 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
[tool.black]
line-length = 88
target-version = ['py311']
include = '\.pyi?$'
exclude = '''
(
/(
\.git
| \.venv
| build
| dist
)/
)
'''
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.5"
[project]
name = "lang2sql"
version = "0.1.9"
description = ""
authors = [
{name = "Yoonjin Hwang",email = "21603682@hankooktech.com"}
]
readme = "README.md"
requires-python = ">=3.11, <4.0"
dependencies = [
"langgraph (==0.2.62)",
"datahub (==0.999.1)",
"langchain (==0.3.14)",
"langchain-community (==0.3.14)",
"openai (==1.59.8)",
"langchain-openai (==0.3.0)",
"streamlit (==1.41.1)",
"python-dotenv (==1.0.1)",
"faiss-cpu (==1.10.0)",
"pre-commit (==4.1.0)",
"setuptools (>=78.1.1,<79.0.0)",
"wheel (>=0.45.1,<0.46.0)",
"twine (>=6.1.0,<7.0.0)",
"langchain-aws (>=0.2.21,<0.3.0)",
"langchain-google-genai (>=2.1.3,<3.0.0)",
"langchain-ollama (>=0.3.2,<0.4.0)",
"langchain-huggingface (>=0.1.2,<0.2.0)"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"