Ouzhang's picture
Add files using upload-large-folder tool
18a4fd6 verified
Raw
History Blame Contribute Delete
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',
],
)