generated from automl/automl_template
-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
34 lines (32 loc) · 861 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='RNAformer',
version='0.0.1',
packages=find_packages(),
include_package_data=True,
package_dir={'': '.'},
install_requires=[
"torch",
"torchvision",
"torchaudio",
"tqdm",
"pyyaml",
"pyaml",
"numpy",
"packaging",
"wheel",
"tabulate",
"scipy",
"pandas==2.0.2",
"scikit-learn==1.3.0",
"matplotlib==3.7.2",
"polars",
"loralib==0.1.2",
"tensorboard==2.13.0",
"transformers",
"datasets==2.13.1",
"pytorch-lightning==2.0.4",
"deepspeed==0.9.5",
"rotary-embedding-torch==0.5.3",
],
)