File size: 415 Bytes
0b8ac9a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from setuptools import setup, find_packages

setup(
    name='vqgan_clip',
    version='0.0.1',
    description='VQGAN-CLIP: Zero-Shot Semantic Image Generation and Editing',
    url='https://github.com/eleutherai/vqgan-clip',
    author='Placeholder',
    author_email='[email protected]',
    license='MIT',
    packages=find_packages(),
    install_requires=['clip', 'taming-transformers'],
    scripts={},

)