-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (62 loc) · 1.62 KB
/
pyproject.toml
File metadata and controls
71 lines (62 loc) · 1.62 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
65
66
67
68
69
70
71
[project]
name = "sal-xarray"
version = "0.2.2"
description = "SAL backend for xarray"
readme = "README.md"
requires-python = ">=3.9, <3.13"
authors = [
{name = "Samuel Jackson", email = "samuel.jackson@ukaea.uk"},
]
maintainers = [
{name = "Samuel Jackson", email = "samuel.jackson@ukaea.uk"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"numpy<2",
"sal>=1.2.5",
"xarray",
]
[tool.setuptools]
packages = ["sal_xarray"]
[project.urls]
repository = "https://github.com/samueljackson92/sal-xarray"
[tool.ruff]
exclude = []
[dependency-groups]
dev = [
"bump-my-version>=1.2.5",
"pylint",
"pytest>=8.4.1",
"pytest-mock>=3.15.1",
"ruff>=0.14.10",
"ty>=0.0.12",
]
[project.entry-points."xarray.backends"]
sal = "sal_xarray.main:SALBackendEntrypoint"
[tool.bumpversion]
current_version = "0.2.2"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"
replace = "{new_version}"
regex = false
ignore_missing_version = false
ignore_missing_files = false
tag = true
sign_tags = false
tag_name = "v{new_version}"
tag_message = "Bump version: {current_version} → {new_version}"
allow_dirty = false
commit = true
message = "Bump version: {current_version} → {new_version}"
commit_args = ""
[[tool.bumpversion.files]]
filename = "pyproject.toml"
search = 'version = "{current_version}"'
replace = 'version = "{new_version}"'