-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsetup.py
33 lines (31 loc) · 988 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
28
29
30
31
32
33
import io
import setuptools
with io.open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setuptools.setup(
name="koopmanlab",
version="1.0.4",
author="Wei Xiong, Tian Yang",
author_email="xiongw21@mails.tsinghua.edu.cn",
description="A library for Koopman Neural Operator with Pytorch",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Koopman-Laboratory/KoopmanLab",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
python_requires='>=3.8.5',
install_requires = [
'torch>=1.10',
'torchvision>=0.13.1',
'matplotlib>=3.3.2',
'numpy>=1.14.5',
'einops==0.5.0',
'timm==0.6.11',
'scipy==1.7.3',
'h5py==3.7.0',
]
)