File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -3,4 +3,8 @@ datahub==0.999.1
3
3
langchain == 0.3.14
4
4
langchain-community == 0.3.14
5
5
openai == 1.59.8
6
- langchain-openai == 0.3.0
6
+ langchain-openai == 0.3.0
7
+ streamlit == 1.41.1
8
+ setuptools
9
+ wheel
10
+ twine
Original file line number Diff line number Diff line change 2
2
from setuptools import setup , find_packages
3
3
4
4
setup (
5
- name = "autosql " , # 패키지 이름
5
+ name = "lang2sql " , # 패키지 이름
6
6
version = "0.1.0" , # 버전
7
- description = "AutoSQL - Query Generator for Data Warehouse" ,
7
+ description = "Lang2SQL - Query Generator for Data Warehouse" ,
8
8
author = "ehddnr301" ,
9
9
packages = find_packages (), # my_package를 자동으로 찾음
10
10
install_requires = [
14
14
"langchain-community==0.3.14" ,
15
15
"openai==1.59.8" ,
16
16
"langchain-openai==0.3.0" ,
17
+ "streamlit==1.41.1" ,
17
18
],
18
19
entry_points = {
19
20
"console_scripts" : [
20
21
# "my-project" 명령어로 my_package.main 모듈의 run 함수를 실행
21
- "autosql = cli.__init__:cli"
22
+ "lang2sql = cli.__init__:cli"
22
23
]
23
24
},
24
25
)
You can’t perform that action at this time.
0 commit comments