forked from lucidrains/meshgpt-pytorch
-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
59 lines (57 loc) · 1.48 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
48
49
50
51
52
53
54
55
56
57
58
59
from setuptools import setup, find_packages
exec(open('meshgpt_pytorch/version.py').read())
setup(
name = 'meshgpt-pytorch',
packages = find_packages(exclude=[]),
version = __version__,
license='MIT',
description = 'MeshGPT Pytorch',
author = 'Phil Wang',
author_email = 'lucidrains@gmail.com',
long_description_content_type = 'text/markdown',
url = 'https://github.com/lucidrains/meshgpt-pytorch',
keywords = [
'artificial intelligence',
'deep learning',
'attention mechanisms',
'transformers',
'mesh generation'
],
install_requires=[
'matplotlib',
'accelerate>=0.25.0',
'beartype',
"huggingface_hub>=0.21.4",
'classifier-free-guidance-pytorch>=0.6.10',
'einops>=0.8.0',
'einx[torch]>=0.3.0',
'ema-pytorch>=0.5.1',
'environs',
'gateloop-transformer>=0.2.2',
'jaxtyping',
'local-attention>=1.9.11',
'numpy',
'pytorch-custom-utils>=0.0.9',
'rotary-embedding-torch>=0.6.4',
'sentencepiece',
'taylor-series-linear-attention>=0.1.6',
'torch>=2.1',
'torch_geometric',
'tqdm',
'vector-quantize-pytorch>=1.14.22',
'x-transformers>=1.30.19,<1.31',
],
setup_requires=[
'pytest-runner',
],
tests_require=[
'pytest'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
)