kingpreyansh's picture
Added Stable Diffusion Files
fe0ca90
raw
history blame
No virus
292 Bytes
from setuptools import setup, find_packages
setup(
name='taming-transformers',
version='0.0.1',
description='Taming Transformers for High-Resolution Image Synthesis',
packages=find_packages(),
install_requires=[
'torch',
'numpy',
'tqdm',
],
)