-
Notifications
You must be signed in to change notification settings - Fork 31
/
setup.cfg
67 lines (63 loc) · 1.56 KB
/
setup.cfg
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[metadata]
name = pyspod
version = attr: pyspod.__version__
description = Python Spectral Proper Orthogonal Decomposition
long_description = file:README.md
long_description_content_type = text/markdown
author = Gianmarco Mengaldo, Marcin Rogowski, Lisandro Dalcin, Romit Maulik, Andrea Lario
author_email = [email protected], [email protected], [email protected], [email protected], [email protected]
url = https://github.com/MathEXLab/PySPOD
license = MIT
license_files = LICENSE.rst
keywords =
SPOD
spectral proper orthogonal decomposition
classifiers =
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Scientific/Engineering :: Mathematics
[options]
packages = find_namespace:
zip_safe = False
include_package_data = True
python_requires = >=3.7
install_requires =
importlib-metadata<5.0; python_version < '3.8'
psutil
tqdm
numpy
scipy
h5py
netcdf4
xarray
matplotlib
pyyaml
[options.package_data]
pyspod.utils.plotting_support =
coast.mat
coast_centred.mat
[options.extras_require]
ai = tensorflow
mpi = mpi4py >= 3.1
test =
pytest
pytest-cov
pytest-mpi
coverage
docs =
Sphinx
sphinx_rtd_theme
[coverage:run]
parallel = True
branch = True
source = pyspod
[coverage:paths]
source =
./pyspod
*/pyspod