forked from openai/glide-text2im
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 640 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (29 loc) · 640 Bytes
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-Text-2-Image",
packages=[
"Glide_Text_2_Image",
"Glide_Text_2_Image.clip",
"Glide_Text_2_Image.tokenizer",
],
package_data={
"Glide_Text_2_Image.tokenizer": [
"bpe_simple_vocab_16e6.txt.gz",
"encoder.json.gz",
"vocab.bpe.gz",
],
"Glide_Text_2_Image.clip": ["config.yaml"],
},
install_requires=[
"Pillow",
"attrs",
"torch",
"filelock",
"requests",
"tqdm",
"ftfy",
"regex",
"numpy",
],
author="OpenAI",
)