timbrooks's picture
Move Stable Diffusion into subdirectory
658ad5e
raw history blame
No virus
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',
],
)