-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (48 loc) · 1.27 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
50
51
52
53
54
[project]
name = "um2nc"
authors = [
{name = "Ben Davies", email="[email protected]"},
{name = "Davide Marchegiani", email="[email protected]"},
{name = "Martin Dix", email="[email protected]"},
{name = "Spencer Wong", email="[email protected]"},
]
maintainers = [
{ name = "ACCESS-NRI", email = "[email protected]" }
]
description = "Program to convert Unified Model output files in fields file format to netCDF"
license = { file = "LICENSE" }
readme = "README.md"
keywords = ["netCDF", "UM", "postprocessing"]
dynamic = ["version"]
dependencies = [
"python >=3.10,<=3.12",
"cf-units",
"cftime",
"f90nml",
"mule",
"netcdf4",
"numpy <2",
"scitools-iris",
"versioneer",
]
[project.scripts]
esm1p5_convert_nc = "umpost.conversion_driver_esm1p5:main"
um2nc = "umpost.um2netcdf:main"
[project.urls]
Repository = "https://github.com/ACCESS-NRI/um2nc-standalone"
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>64",
"versioneer[toml]"
]
[tool.setuptools.packages.find]
include = ["umpost"]
namespaces = false
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "umpost/_version.py"
versionfile_build = "umpost/_version.py"
tag_prefix = ""
parentdir_prefix = "umpost-"