-
Notifications
You must be signed in to change notification settings - Fork 46
/
setup.py
49 lines (46 loc) · 1.59 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
#!/bin/python3
from setuptools import setup
exec(open('flowtorch/version.py').read())
setup(
name="flowTorch",
version=__version__,
description="Analysis and reduced-order modeling of fluid flows",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="flowTorch contributors",
author_email="a.weiner@tu-braunschweig.de",
url="https://github.com/FlowModelingControl/flowtorch",
packages=["flowtorch", "flowtorch.data", "flowtorch.analysis", "flowtorch.rom"],
license="GPL-v3",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Education",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: C++",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Unix Shell",
"Topic :: Education",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Visualization"
],
install_requires=[
"h5py",
"netCDF4",
"matplotlib",
"numpy",
"numpy-stl",
"pandas",
"plotly",
"torch >= 1.9",
"jupyterlab",
"scikit-learn",
"vtk"
]
)