-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
46 lines (40 loc) · 1.1 KB
/
pyproject.toml
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
[tool.setuptools]
py-modules = []
[tool.setuptools_scm]
[build-system]
requires = ['setuptools==69.1.0', 'setuptools-scm==7.1.0']
build-backend = "setuptools.build_meta"
[project]
name = "PyMPDATA-MPI"
description = "PyMPDATA + numba-mpi coupler sandbox"
readme = "README.md"
requires-python = ">=3.10"
keywords = ["MPI", "MPDATA", "Numba", "PyMPDATA"]
license = {text = "GPL-3.0"}
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics"
]
dependencies = [
# TODO #94
"numba<0.57.0",
"numpy<1.25.0",
"numba_mpi>=0.30",
"PyMPDATA==1.0.16",
"mpi4py",
"h5py",
]
dynamic = ["version"]
[project.optional-dependencies]
tests = [
"pytest",
"pytest-mpi",
"pytest-timeout",
"matplotlib",
]