-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.py
34 lines (33 loc) · 1.01 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
from setuptools import setup, find_packages
setup(
name = 'galerkin_transformer',
packages=find_packages(include=['galerkin_transformer', 'galerkin_transformer.*']),
version = '0.2.1',
license='MIT',
description = 'Galerkin Transformer',
long_description='Galerkin Transformer: a linear attention without softmax',
long_description_content_type="text/markdown",
author = 'Shuhao Cao',
author_email = 'scao.math@gmail.com',
url = 'https://github.com/scaomath/galerkin-transformer',
keywords = ['transformers', 'attention', 'galerkin', 'hilbert', 'pde'],
install_requires=[
'seaborn',
'torchinfo',
'numpy',
'torch>=1.9.0',
'plotly',
'scipy',
'psutil',
'matplotlib',
'tqdm',
'PyYAML',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Mathematics',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
],
)