-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (32 loc) · 771 Bytes
/
Copy pathsetup.py
File metadata and controls
33 lines (32 loc) · 771 Bytes
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
from setuptools import find_packages, setup
setup(
name="dendritic",
packages=find_packages(),
install_requires=[
"python-dotenv",
"spacy",
"nltk",
# "torch==1.12.1+cu116q",
"tensorboard",
"requests",
"celery",
# check it out https://github.com/jd/tenacity
"tenacity",
"lxml",
"transformers[torch]",
"datasets",
"accelerate",
"jupyterlab",
"ipykernel>5.5.0",
# for jupyter lab
"ipywidgets>=7.6",
"jupyterlab-widgets",
# for plotting
"plotly==5.18.0",
# to save images from plotly
"kaleido",
# "scipy==1.10.1",
"scikit-learn==1.3.0",
"tqdm==4.65.0",
],
)