Spaces:
Runtime error
Runtime error
File size: 622 Bytes
0122640 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
from setuptools import setup
setup(
name="glide-text2im",
packages=[
"glide_text2im",
"glide_text2im.clip",
"glide_text2im.tokenizer",
],
package_data={
"glide_text2im.tokenizer": [
"bpe_simple_vocab_16e6.txt.gz",
"encoder.json.gz",
"vocab.bpe.gz",
],
"glide_text2im.clip": ["config.yaml"],
},
install_requires=[
"Pillow",
"attrs",
"torch",
"filelock",
"requests",
"tqdm",
"ftfy",
"regex",
],
author="OpenAI",
)
|