kingpreyansh's picture
Added Stable Diffusion Files
fe0ca90
raw
history blame
No virus
233 Bytes
from setuptools import setup, find_packages
setup(
name='stable-diffusion',
version='0.0.1',
description='',
packages=find_packages(),
install_requires=[
'torch',
'numpy',
'tqdm',
],
)