-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
38 lines (34 loc) · 1.03 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
[project]
name = "sectionate"
dynamic = ["version"]
authors = [
{name="Raphael Dussin", email="[email protected]"},
{name="Henri F. Drake", email="[email protected]"}
]
description = "A package to sample grid-consistent sections from ocean model outputs"
readme = "README.md"
requires-python = ">=3.8"
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 @ git+https://github.com/xgcm/xgcm.git@7492277de22ed1e677a6a7523b61b20643a98a77",
]
[project.urls]
"Homepage" = "https://github.com/raphaeldussin/sectionate"
"Bugs/Issues/Features" = "https://github.com/raphaeldussin/sectionate/issues"
"Sibling package" = "https://github.com/hdrake/regionate"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.version]
path = "sectionate/version.py"