Luis Oala commited on
Commit
86410d4
1 Parent(s): c904588

Update setup.py

Browse files
Files changed (1) hide show
  1. setup.py +1 -16
setup.py CHANGED
@@ -1,20 +1,7 @@
1
  from setuptools import setup
2
-
3
  setup(
4
  name="glide-text2im",
5
- packages=[
6
- "glide_text2im",
7
- "glide_text2im.clip",
8
- "glide_text2im.tokenizer",
9
- ],
10
- package_data={
11
- "glide_text2im.tokenizer": [
12
- "bpe_simple_vocab_16e6.txt.gz",
13
- "encoder.json.gz",
14
- "vocab.bpe.gz",
15
- ],
16
- "glide_text2im.clip": ["config.yaml"],
17
- },
18
  install_requires=[
19
  "Pillow",
20
  "attrs",
@@ -22,8 +9,6 @@ setup(
22
  "filelock",
23
  "requests",
24
  "tqdm",
25
- "ftfy",
26
- "regex",
27
  ],
28
  author="OpenAI",
29
  )
 
1
  from setuptools import setup
 
2
  setup(
3
  name="glide-text2im",
4
+ packages=["glide_text2im"],
 
 
 
 
 
 
 
 
 
 
 
 
5
  install_requires=[
6
  "Pillow",
7
  "attrs",
 
9
  "filelock",
10
  "requests",
11
  "tqdm",
 
 
12
  ],
13
  author="OpenAI",
14
  )