File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -63,6 +63,7 @@ AWS_BEDROCK_EMBEDDING_MODEL=amazon.titan-embed-text-v2:0
63
63
# EMBEDDING_PROVIDER='huggingface'
64
64
# HUGGING_FACE_EMBEDDING_REPO_ID=
65
65
# HUGGING_FACE_EMBEDDING_MODEL=
66
+
66
67
# HUGGING_FACE_EMBEDDING_API_TOKEN=
67
68
68
69
DATAHUB_SERVER = ' http://-.-.-.-:-'
@@ -131,4 +132,5 @@ DATAHUB_SERVER = 'http://-.-.-.-:-'
131
132
132
133
# sqlite
133
134
# DB_TYPE=sqlite
134
- # SQLITE_PATH=./data/sqlite.db
135
+ # SQLITE_PATH=./data/sqlite.db
136
+
Original file line number Diff line number Diff line change 5
5
pip 또는 Python 배포 도구들이 이 정보를 바탕으로 설치를 수행합니다.
6
6
"""
7
7
8
+ import os
9
+ import glob
8
10
from setuptools import find_packages , setup
9
11
10
12
from version import __version__
@@ -41,7 +43,11 @@ def load_requirements(path="requirements.txt"):
41
43
description = "Lang2SQL - Query Generator for Data Warehouse" ,
42
44
long_description = long_description ,
43
45
long_description_content_type = "text/markdown" ,
44
- packages = find_packages (),
46
+ packages = find_packages () + ["prompt" ],
47
+ include_package_data = False ,
48
+ package_data = {
49
+ "prompt" : ["*.md" ],
50
+ },
45
51
install_requires = requirements ,
46
52
entry_points = {
47
53
"console_scripts" : [
You can’t perform that action at this time.
0 commit comments