-
Notifications
You must be signed in to change notification settings - Fork 106
Expand file tree
/
Copy pathpyproject.toml
More file actions
90 lines (84 loc) · 2.08 KB
/
pyproject.toml
File metadata and controls
90 lines (84 loc) · 2.08 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[build-system]
build-backend = 'mesonpy'
requires = [
"meson-python",
"meson",
"ninja",
"Cython",
"pybind11",
"numpy",
"libpython; sys_platform == 'win32'",
]
[project]
name = 'anuga'
dynamic = ['version']
description = 'A set of python modules for tsunami and flood modelling'
readme = 'README.rst'
license-files = ["LICENSE.txt"]
license = "Apache-2.0"
authors = [
{name = 'Stephen Roberts', email = 'stephen.roberts@anu.edu.au'},
]
requires-python = ">=3.10, <3.15"
dependencies = [
'numpy>=2.0.0',
'dill>=0.3.7',
'matplotlib>=3.7',
'netCDF4>=1.6',
'scipy>=1.11',
'meshpy>=2022.1',
'utm',
'xarray',
]
classifiers = [
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Programming Language :: C',
'Programming Language :: C++',
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
]
[project.optional-dependencies]
parallel = [
'mpi4py',
'pymetis>=2023.1',
]
data = [
'pyproj>=3.6',
'affine>=2.4',
'rasterio',
'fiona',
'shapely',
'xarray',
'pandas',
'openpyxl',
'tomli; python_version < "3.11"',
]
dev = [
'pytest',
'psutil',
]
[project.urls]
homepage = "https://en.wikipedia.org/wiki/ANUGA_Hydro"
documentation = "https://anuga.readthedocs.io"
source = "https://github.com/anuga-community/anuga_core"
download = "https://github.com/anuga-community/anuga_core/releases"
tracker = "https://github.com/anuga-community/anuga_core/issues"
[tool.pytest.ini_options]
minversion = '6.0'
testpaths = [
'anuga'
]
markers = [
"slow: marks tests as slow — omit --run-fast to include in the default run",
]