-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
34 lines (32 loc) · 1.05 KB
/
setup.py
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
# setup.py
from setuptools import setup, find_packages
with open("docs/README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="lang2sql", # 패키지 이름
version="0.1.9", # 버전
author="ehddnr301",
author_email="[email protected]",
url="https://github.com/CausalInferenceLab/Lang2SQL",
description="Lang2SQL - Query Generator for Data Warehouse",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(), # my_package를 자동으로 찾음
install_requires=[
"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",
],
entry_points={
"console_scripts": [
# "my-project" 명령어로 my_package.main 모듈의 run 함수를 실행
"lang2sql = cli.__init__:cli"
]
},
)