Skip to content

Commit

Permalink
setup.py
Browse files Browse the repository at this point in the history
fix for stable diffusion
  • Loading branch information
hlky authored and Birch-san committed Nov 5, 2022
1 parent 60e5042 commit 0602097
Showing 1 changed file with 23 additions and 3 deletions.
26 changes: 23 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
from setuptools import setup
from setuptools import setup, find_packages


if __name__ == '__main__':
setup()
setup(
name='k-diffusion',
version='0.0.1',
description='Karras et al. (2022) diffusion models for PyTorch',
packages=find_packages(),
install_requires=[
'accelerate',
'clean-fid',
'einops',
'jsonmerge',
'kornia',
'Pillow',
'resize-right',
'scikit-image',
'scipy',
'torch',
'torchdiffeq',
'torchvision',
'tqdm',
'wandb',
],
)

0 comments on commit 0602097

Please sign in to comment.