forked from lucidrains/magvit2-pytorch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (44 loc) · 1.15 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
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',
author_email = 'lucidrains@gmail.com',
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.11.8',
'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',
],
)