forked from MOM6-community/sectionate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 994 Bytes
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 994 Bytes
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
[project]
name = "sectionate"
dynamic = ["version"]
authors = [
{name="Raphael Dussin", email="raphael.dussin@gmail.com"},
{name="Henri F. Drake", email="hfdrake@uci.edu"}
]
description = "A package to sample grid-consistent sections from ocean model outputs"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dependencies = [
"dask",
"numba",
"numpy",
"scipy",
"xarray",
"xgcm >= 0.9.0",
]
[project.urls]
"Homepage" = "https://github.com/MOM6-community/sectionate"
"Bugs/Issues/Features" = "https://github.com/MOM6-community/sectionate/issues"
"Sibling package" = "https://github.com/hdrake/regionate"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "sectionate/version.py"
[tool.hatch.build]
exclude = ["examples/**", "data/**"]