generated from ACCESS-NRI/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (44 loc) · 1.33 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
45
46
47
48
49
[project]
name = "replace-landsurface"
authors = [
{name = "Chermelle Engel", email="[email protected]"},
{name = "Davide Marchegiani", email="[email protected]"},
{name = "Paul Leopardi", email="[email protected]"},
]
maintainers = [
{ name = "ACCESS-NRI", email = "[email protected]" }
]
description = "Package to replace specific land surface fields to be used within ACCESS-RAM suites."
license = { file = "LICENSE" }
readme = "README.md"
keywords = ["ACCESS-RAM", "Regional Nesting Suite", "Replace Land Surface"]
dynamic = ["version"]
dependencies = [
"python >=3.10,<=3.12",
"mule",
"numpy ==1.23.4", # https://stackoverflow.com/a/75148219/21024780
"scitools-iris",
"xarray",
"versioneer",
]
[project.urls]
Repository = "https://github.com/ACCESS-NRI/replace_landsurface"
[project.scripts]
hres_eccb = "replace_landsurface.hres_eccb:main"
hres_ic = "replace_landsurface.hres_ic:main"
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>64",
"versioneer[toml]"
]
[tool.setuptools.packages.find]
where = ["src"]
namespaces = false
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "src/replace_landsurface/_version.py"
versionfile_build = "replace_landsurface/_version.py"
tag_prefix = ""
parentdir_prefix = "replace-landsurface-"