forked from DeepWok/mase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
59 lines (58 loc) · 1.42 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
from setuptools import setup, find_packages
setup(
name="mase-tools",
version="1.0.0",
description="Machine-Learning Accelerator System Exploration Tools",
author="Aaron Zhao, Jianyi Cheng, Cheng Zhang, Pedro Gimenes",
license_files=("LICENSE",),
python_requires="==3.10.6",
package_dir={"": "machop"},
packages=find_packages(where="machop"),
install_requires=[
"lightning",
"transformers",
"diffusers",
"accelerate",
"toml",
"timm",
"pytorch-nlp",
"datasets",
"onnx",
"onnxruntime",
"optimum",
"black",
"GitPython",
"colorlog",
"cocotb[bus]==1.8.0",
"pytest",
"pytest-cov",
"pytest-xdist",
"pytest-sugar",
"pytest-html",
"pytest-profiling",
"ipython",
"ipdb",
"sentencepiece",
"einops",
"deepspeed",
"pybind11",
"tabulate",
"tensorboard",
"optuna",
"stable-baselines3",
"scikit-learn",
"h5py",
"pyyaml",
"numpy",
"pandas",
"wandb",
"imageio",
"imageio-ffmpeg",
"opencv-python",
"kornia",
"einops",
"sphinx",
"sphinx-rtd-theme",
],
)