Skip to content

Commit f83699f

Browse files
committed
chore: Rename project from AutoSQL to Lang2SQL
1 parent 80e3e55 commit f83699f

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

requirements.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,8 @@ datahub==0.999.1
33
langchain==0.3.14
44
langchain-community==0.3.14
55
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

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
from setuptools import setup, find_packages
33

44
setup(
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=[
@@ -14,11 +14,12 @@
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
)

0 commit comments

Comments
 (0)