-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathsetup.py
48 lines (47 loc) · 1.16 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
from setuptools import setup, find_packages
setup(
name = 'q-transformer',
packages = find_packages(exclude=[]),
version = '0.4.3',
license = 'MIT',
description = 'Q-Transformer',
author = 'Phil Wang',
long_description_content_type = 'text/markdown',
url = 'https://github.com/lucidrains/q-transformer',
keywords = [
'artificial intelligence',
'deep learning',
'attention mechanisms',
'transformers',
'q-learning'
],
install_requires=[
'accelerate',
'adam-atan2-pytorch>=0.0.12',
'beartype',
'classifier-free-guidance-pytorch>=0.7.1',
'einops>=0.8.0',
'ema-pytorch>=0.5.3',
'hl-gauss-pytorch>=0.1.17',
'hyper-connections>=0.1.7',
'jaxtyping',
'numpy',
'sentencepiece',
'x-transformers>=2.0.2',
'torch>=2.0'
],
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',
],
)