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
33langchain == 0.3.14
44langchain-community == 0.3.14
55openai == 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 22from setuptools import setup , find_packages
33
44setup (
5- name = "autosql " , # 패키지 이름
5+ name = "lang2sql " , # 패키지 이름
66 version = "0.1.0" , # 버전
7- description = "AutoSQL - Query Generator for Data Warehouse" ,
7+ description = "Lang2SQL - Query Generator for Data Warehouse" ,
88 author = "ehddnr301" ,
99 packages = find_packages (), # my_package를 자동으로 찾음
1010 install_requires = [
1414 "langchain-community==0.3.14" ,
1515 "openai==1.59.8" ,
1616 "langchain-openai==0.3.0" ,
17+ "streamlit==1.41.1" ,
1718 ],
1819 entry_points = {
1920 "console_scripts" : [
2021 # "my-project" 명령어로 my_package.main 모듈의 run 함수를 실행
21- "autosql = cli.__init__:cli"
22+ "lang2sql = cli.__init__:cli"
2223 ]
2324 },
2425)
You can’t perform that action at this time.
0 commit comments