-
Notifications
You must be signed in to change notification settings - Fork 34
/
setup.py
47 lines (45 loc) · 1.19 KB
/
setup.py
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
from setuptools import setup, find_packages
exec(open('magvit2_pytorch/version.py').read())
setup(
name = 'magvit2-pytorch',
packages = find_packages(),
version = __version__,
license='MIT',
description = 'MagViT2 - Pytorch',
long_description_content_type = 'text/markdown',
author = 'Phil Wang',
url = 'https://github.com/lucidrains/magvit2-pytorch',
keywords = [
'artificial intelligence',
'deep learning',
'transformer',
'attention mechanisms',
'generative video model'
],
install_requires=[
'accelerate>=0.24.0',
'beartype',
'einops>=0.7.0',
'ema-pytorch>=0.2.4',
'pytorch-warmup',
'gateloop-transformer>=0.2.2',
'kornia',
'opencv-python',
'pillow',
'pytorch-custom-utils>=0.0.9',
'numpy',
'vector-quantize-pytorch>=1.14.39',
'taylor-series-linear-attention>=0.1.5',
'torch',
'torchvision',
'x-transformers'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
)