forked from Stability-AI/stablediffusion
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
28 lines (24 loc) · 797 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
from setuptools import setup, find_packages
import platform
dependencies = [
"albumentations==1.3.0",
"opencv-python==4.6.0.66",
"pytorch-lightning==1.4.2",
"omegaconf==2.1.1",
"test-tube>=0.7.5",
"einops==0.3.0",
"transformers==4.33.2",
"kornia==0.6",
"open_clip_torch==2.0.2",
"torchmetrics==0.6.0",
"tqdm",
"huggingface-hub>=0.10.0",
]
if platform.system() == "Darwin":
dependencies += ["torch==1.13.1", "torchvision==0.14.1"]
# On Windows and Linux, the user needs to install torch and torchvision manually, since the CUDA versions are not hosted on PyPI.
# They need to run: pip install torch torchvision --extra-index-url https://download.pytorch.org/whl/cu116
setup(
packages=find_packages(),
install_requires=dependencies,
)