-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (47 loc) · 1.08 KB
/
setup.py
File metadata and controls
48 lines (47 loc) · 1.08 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
from setuptools import setup, find_packages
setup(
name = 'warhol',
packages = find_packages(),
include_package_data = True,
version = '0.14.3',
license='MIT',
description = 'Warhol',
authors = 'Jules Samaran, Ugo Tanielian, Romain Beaumont',
url = 'https://github.com/lucidrains/dalle-pytorch',
keywords = [
'artificial intelligence',
'attention mechanism',
'transformers',
'text-to-image'
],
install_requires=[
'axial_positional_embedding',
'DALL-E',
'numpy',
'opencv-python',
'einops>=0.3',
'ftfy',
'g-mlp-pytorch',
'pillow',
'regex',
'taming-transformers-rom1504',
'tokenizers',
'torch>=1.6',
'torchvision',
'transformers',
'tqdm',
'youtokentome',
'WebDataset',
'matplotlib',
'ipywidgets',
'clip-anytorch',
'wandb'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
)