-
Notifications
You must be signed in to change notification settings - Fork 30
/
setup.py
27 lines (26 loc) · 876 Bytes
/
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
from setuptools import setup, find_packages
setup(
name = 'routing_transformer',
packages = find_packages(exclude=['examples']),
version = '1.6.1',
license='MIT',
description = 'Routing Transformer (Pytorch)',
author = 'Phil Wang, Aran Komatsuzaki',
author_email = 'lucidrains@gmail.com, aran1234321@gmail.com',
url = 'https://github.com/lucidrains/routing-transformer',
keywords = ['transformers', 'attention', 'artificial intelligence'],
install_requires=[
'einops',
'local-attention>=1.4.0',
'mixture-of-experts>=0.2.0',
'product-key-memory',
'torch'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
)