-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (60 loc) · 1.47 KB
/
pyproject.toml
File metadata and controls
71 lines (60 loc) · 1.47 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "jupyterhub_home_nfs"
dynamic = ["version"]
description = "A package for managing storage quotas for JupyterHub home directories"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "BSD-3-Clause"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
dependencies = [
"traitlets>=5.13.0",
"ruamel-yaml==0.18.10",
"prometheus-client"
]
[project.urls]
Homepage = "https://github.com/2i2c-org/jupyterhub-home-nfs"
[tool.hatch.version]
path = "jupyterhub_home_nfs/__init__.py"
[tool.tbump]
github_url = "https://github.com/2i2c-org/jupyterhub-home-nfs"
[tool.tbump.version]
current = "1.2.1-0.dev"
regex = '''
(?P<major>\d+)
\.
(?P<minor>\d+)
\.
(?P<patch>\d+)
(\-
(?P<prelease>
(
(alpha|beta|rc)\.\d+|
0\.dev
)
)
)?
'''
[tool.tbump.git]
message_template = "Bump to {new_version}"
tag_template = "{new_version}"
[[tool.tbump.file]]
src = "jupyterhub_home_nfs/__init__.py"
search = '__version__ = "{current_version}"'
[[tool.tbump.file]]
src = "helm/jupyterhub-home-nfs/Chart.yaml"
search = 'version: {current_version}'
[[tool.tbump.file]]
src = "helm/jupyterhub-home-nfs/Chart.yaml"
search = 'appVersion: {current_version}'
[[tool.tbump.file]]
src = "chartpress.yaml"
search = 'baseVersion: {current_version}'
[tool.isort]
profile = "black"