-
Notifications
You must be signed in to change notification settings - Fork 27
/
pyproject.toml
72 lines (67 loc) · 1.91 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[project]
name = "payu"
authors = [
{ name = "Marshall Ward", email = "python@marshallward.org" }
]
maintainers = [
{ name = "ACCESS-NRI", email = "access.nri@anu.edu.au" }
]
description = "A climate model workflow manager for supercomputing environments"
readme = "README.rst"
license = { text = "Apache-2.0" }
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
]
keywords = ["climate model", "workflow"]
dynamic = ["version"]
# The dependencies here are also used by the conda build and so must follow
# conda package match specifications, see here:
# https://docs.conda.io/projects/conda-build/en/stable/resources/package-spec.html#package-match-specifications
dependencies = [
"f90nml >=0.16",
"yamanifest >=0.3.4",
"PyYAML",
"requests",
"python-dateutil",
"tenacity >=8.0.0",
"cftime",
"GitPython >=3.1.40",
"ruamel.yaml >=0.18.5",
"packaging"
]
[project.optional-dependencies]
test = [
"pytest",
"pylint",
"Sphinx"
]
mitgcm = ["mnctools>=0.2"]
[project.scripts]
payu = "payu.cli:parse"
payu-run = "payu.subcommands.run_cmd:runscript"
payu-collate = "payu.subcommands.collate_cmd:runscript"
payu-profile = "payu.subcommands.profile_cmd:runscript"
payu-sync = "payu.subcommands.sync_cmd:runscript"
payu-branch = "payu.subcommands.branch_cmd:runscript"
payu-clone = "payu.subcommands.clone_cmd:runscript"
payu-checkout = "payu.subcommands.checkout_cmd:runscript"
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools >= 61.0.0",
"versioneer[toml]"
]
[tool.setuptools.packages.find]
include = ["payu*"]
namespaces = false
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "payu/_version.py"
versionfile_build = "payu/_version.py"
tag_prefix = ""
parentdir_prefix = "payu-"