-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (33 loc) · 826 Bytes
/
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
35
from setuptools import setup, find_packages
setup(
name="bots",
version="0.0.2",
packages=find_packages(),
include_package_data=True,
package_data={
"bots": ["models/**/*"],
},
install_requires=[
"pandas==2.2.2",
"xgboost==2.1.0",
"shap==0.46.0",
"tensorflow==2.17.0",
"tensorflow-text==2.17.0",
"tensorflow-hub==0.16.1",
"keras==3.4.1",
"ollama==0.2.1",
"wordcloud==1.9.3",
"matplotlib==3.9.2",
"nltk==3.9.1",
"langdetect==1.0.9",
"sentencepiece==0.2.0",
"dune_client==1.7.7",
"google-cloud-storage==2.18.2",
"google-cloud-aiplatform==1.59.0",
"python-dotenv==1.0.1",
"json5==0.9.28",
"psycopg2-binary==2.9.9",
"SQLAlchemy==2.0.36",
"openai==1.61.1"
]
)