-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (55 loc) · 1.67 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
58
59
60
61
62
63
64
[project]
name = "fractal-task-tools"
version = "0.0.8"
description = "Shared tools for Fractal tasks"
authors = [
]
readme = "README.md"
license = {text ="BSD-3-Clause"}
requires-python = ">=3.10,<3.13"
dependencies = [
"pydantic >=2.0.0,<=2.8.2",
"docstring-parser ==0.15",
]
[project.optional-dependencies]
dev = [
"bumpver ==2024.1130",
"devtools ==0.12.2",
"pytest >=8.3.0, <9.0.0",
"coverage >=7.6.0,<7.7.0",
"mkdocs ==1.5.2",
"mkdocs-material ==9.1.21",
"mkdocs-literate-nav ==0.5.0",
"mkdocs-gen-files ==0.4.0",
"mkdocs-section-index ==0.3.5",
"mkdocstrings[python] ==0.25.2",
"mkdocs-include-markdown-plugin >=5.0.0,<6.0.0",
]
[project.urls]
homepage = "https://github.com/fractal-analytics-platform/fractal-task-tools"
repository = "https://github.com/fractal-analytics-platform/fractal-task-tools"
changelog = "https://github.com/fractal-analytics-platform/fractal-task-tools/blob/main/CHANGELOG.md"
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project.scripts]
fractal-manifest = "fractal_task_tools._cli:main"
[tool.bumpver]
current_version = "0.0.8"
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_task_tools/__init__.py" = ['__VERSION__ = "{version}"$']
[tool.coverage.run]
branch = true
parallel = true
relative_files = true
source = ["src"]
omit = ["tests/*", "*/.venv/*"]
[tool.coverage.report]
omit = ["tests/*", "*/.venv/*"]