-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (54 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
64 lines (54 loc) · 1.31 KB
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
[project]
name = "experiment-runner"
dynamic = ["version"]
description = "A tool to orchestrate branch-based workflows and automate job submission for ACCESS experiments."
authors = [
{ name = "Minghang Li", email = "Minghang.Li1@anu.edu.au" }
]
readme = "README.md"
keywords = ["experiment runner", "workflow", "access", "payu"]
license = { text = "Apache-2.0" }
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
]
dependencies = [
"ruamel.yaml",
"f90nml",
"payu"
]
[build-system]
requires = ["setuptools>=80", "setuptools_scm[toml]>=8", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[project.scripts]
experiment-runner = "experiment_runner.main:main"
[project.urls]
Homepage = "https://github.com/ACCESS-NRI/access-experiment-runner"
[project.optional-dependencies]
devel = [
"flake8",
"black",
"pre-commit",
]
test = [
"pytest",
"pytest-cov",
]
[tool.pytest.ini_options]
addopts = [
"--cov=experiment_runner",
"--cov-report=term",
"--cov-report=html",
"--cov-report=xml"
]
testpaths = ["tests"]
[tool.coverage.run]
[tool.black]
line-length = 120
[tool.flake8]
max-line-length = 120
extend-ignore = ["E203"]