Skip to content

Commit 3f414cb

Browse files
Merge pull request #112 from CausalInferenceLab/feature/99-fix-pip-install-conflict
pip install 충돌 해결을 위한 Poetry 설정 제거
2 parents fcfc42f + 05a6556 commit 3f414cb

File tree

1 file changed

+51
-47
lines changed

1 file changed

+51
-47
lines changed

pyproject.toml

Lines changed: 51 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,55 @@
1-
[tool.black]
2-
line-length = 88
3-
target-version = ['py311']
4-
include = '\.pyi?$'
5-
exclude = '''
6-
(
7-
/(
8-
\.git
9-
| \.venv
10-
| build
11-
| dist
12-
)/
13-
)
14-
'''
1+
[build-system]
2+
requires = ["setuptools>=42", "wheel"]
3+
build-backend = "setuptools.build_meta"
154

16-
[tool.poetry.group.dev.dependencies]
17-
pytest = "^8.3.5"
5+
# [tool.black]
6+
# line-length = 88
7+
# target-version = ['py311']
8+
# include = '\.pyi?$'
9+
# exclude = '''
10+
# (
11+
# /(
12+
# \.git
13+
# | \.venv
14+
# | build
15+
# | dist
16+
# )/
17+
# )
18+
# '''
1819

19-
[project]
20-
name = "lang2sql"
21-
version = "0.1.9"
22-
description = ""
23-
authors = [
24-
{name = "Yoonjin Hwang",email = "[email protected]"}
25-
]
26-
readme = "README.md"
27-
requires-python = ">=3.11, <4.0"
28-
dependencies = [
29-
"langgraph (==0.2.62)",
30-
"datahub (==0.999.1)",
31-
"langchain (==0.3.14)",
32-
"langchain-community (==0.3.14)",
33-
"openai (==1.59.8)",
34-
"langchain-openai (==0.3.0)",
35-
"streamlit (==1.41.1)",
36-
"python-dotenv (==1.0.1)",
37-
"faiss-cpu (==1.10.0)",
38-
"pre-commit (==4.1.0)",
39-
"setuptools (>=78.1.1,<79.0.0)",
40-
"wheel (>=0.45.1,<0.46.0)",
41-
"twine (>=6.1.0,<7.0.0)",
42-
"langchain-aws (>=0.2.21,<0.3.0)",
43-
"langchain-google-genai (>=2.1.3,<3.0.0)",
44-
"langchain-ollama (>=0.3.2,<0.4.0)",
45-
"langchain-huggingface (>=0.1.2,<0.2.0)"
46-
]
20+
# [tool.poetry.group.dev.dependencies]
21+
# pytest = "^8.3.5"
4722

23+
# [project]
24+
# name = "lang2sql"
25+
# version = "0.1.9"
26+
# description = ""
27+
# authors = [
28+
# {name = "Yoonjin Hwang",email = "[email protected]"}
29+
# ]
30+
# readme = "README.md"
31+
# requires-python = ">=3.11, <4.0"
32+
# dependencies = [
33+
# "langgraph (==0.2.62)",
34+
# "datahub (==0.999.1)",
35+
# "langchain (==0.3.14)",
36+
# "langchain-community (==0.3.14)",
37+
# "openai (==1.59.8)",
38+
# "langchain-openai (==0.3.0)",
39+
# "streamlit (==1.41.1)",
40+
# "python-dotenv (==1.0.1)",
41+
# "faiss-cpu (==1.10.0)",
42+
# "pre-commit (==4.1.0)",
43+
# "setuptools (>=78.1.1,<79.0.0)",
44+
# "wheel (>=0.45.1,<0.46.0)",
45+
# "twine (>=6.1.0,<7.0.0)",
46+
# "langchain-aws (>=0.2.21,<0.3.0)",
47+
# "langchain-google-genai (>=2.1.3,<3.0.0)",
48+
# "langchain-ollama (>=0.3.2,<0.4.0)",
49+
# "langchain-huggingface (>=0.1.2,<0.2.0)"
50+
# ]
4851

49-
[build-system]
50-
requires = ["poetry-core>=2.0.0,<3.0.0"]
51-
build-backend = "poetry.core.masonry.api"
52+
53+
# [build-system]
54+
# requires = ["poetry-core>=2.0.0,<3.0.0"]
55+
# build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)