Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
LiruiZhao
/
Diffree
like
139
Running
on
Zero
App
Files
Files
Community
30e6374
Diffree
/
stable_diffusion
/
setup.py
LiruiZhao
update
2d0e22d
5 months ago
raw
Copy download link
history
blame
Safe
233 Bytes
from
setuptools
import
setup, find_packages
setup(
name=
'latent-diffusion'
,
version=
'0.0.1'
,
description=
''
,
packages=find_packages(),
install_requires=[
'torch'
,
'numpy'
,
'tqdm'
,
],
)