-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 803 Bytes
/
pyproject.toml
File metadata and controls
33 lines (29 loc) · 803 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
[project]
name = "xbudget"
dynamic = ["version"]
authors = [
{name="Henri F. Drake", email="hfdrake@uci.edu"},
]
description = "Helper functions and meta-data conventions for wrangling finite-volume ocean model budgets"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"xarray",
"xgcm >= 0.9.0",
]
[project.urls]
"Homepage" = "https://github.com/hdrake/xbudget"
"Bugs/Issues/Features" = "https://github.com/hdrake/xbudget/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "xbudget/version.py"
[tool.hatch.build]
exclude = ["examples/**", "data/**"]