-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (47 loc) · 1.27 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
[project]
name = "fractal-healthcheck"
version = "0.1.10"
authors = [
{name = "Alberto Pastorutti", email = "alberto.pastorutti@exact-lab.it"},
{name = "Tommaso Comparin", email = "tommaso.comparin@exact-lab.it"},
]
description = "A simple tool to monitor Fractal instances"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.10"
dependencies = [
"click >= 8.1.0, < 8.2.0",
"psutil >= 6.1.1, < 6.2.0",
"pyyaml >= 6.0.0, <6.1.0",
"pydantic[email] >= 2.10.0, < 2.11.0",
"urllib3 >= 2.3.0, < 3.0.0",
"paramiko >= 3.5.1, < 4.0.0",
"fabric >= 3.2.2, < 4.0.0",
]
[project.optional-dependencies]
dev = [
"bumpver",
"devtools >= 0.12.2",
"pytest >= 8.3.0, < 9.0.0",
"pre-commit >=2.19",
"requests >= 2.32.0, < 3.0.0",
]
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project.scripts]
fractal-health = "fractal_healthcheck.main:main"
[tool.bumpver]
current_version = "0.1.10"
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
tag = true
push = true
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'version = "{version}"$',
]
"src/fractal_healthcheck/__init__.py" = [
'__VERSION__ = "{version}"$'
]