generated from ACCESS-NRI/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (49 loc) · 1.19 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
[project]
name = "um-modify"
authors = [
{name = "Davide Marchegiani", email="davide.marchegiani@anu.edu.au"},
]
maintainers = [
{ name = "ACCESS-NRI", email = "access.nri@anu.edu.au" }
]
description = "Package to modify the data of a UM file."
license = { file = "LICENSE" }
readme = "README.md"
keywords = ["ACCESS-CM2", "ACCESS-ESM1.5", "ACCESS-ESM1.6", "Unified Model"]
dynamic = ["version"]
requires-python = ">=3.10"
dependencies = [
"mule",
"numpy < 2",
"versioneer",
]
[project.urls]
Repository = "/~https://github.com/ACCESS-NRI/um-modify"
[project.scripts]
um-modify = "TODO" # TODO: Add the script
[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/um_modify/_version.py"
versionfile_build = "um_modify/_version.py"
tag_prefix = ""
parentdir_prefix = "um-modify-"
[tool.pytest.ini_options]
testpaths = ["src"]
addopts = ["--cov=src"]
[tool.coverage.run]
branch = true
source = ["src/"]
[tool.coverage.report]
omit = ["src/*/_version.py"]
skip_empty = true
show_missing = true