forked from ajc27-git/freemocap_tools
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
36 lines (27 loc) · 975 Bytes
/
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "ajc27_freemocap_blender_addon"
description="A Blender add-on for loading and visualizing motion capture data recorded with the FreeMoCap software (https://freemocap.org)"
readme = "README.md"
authors = [
{ name = "Skelly FreeMoCap", email = "[email protected]" },
]
license = { file = "LICENSE" }
dynamic = ["version"]
requires-python = ">=3.10,<3.13"
dependencies = []
[project.urls]
Homepage = "https://freemocap.org"
Documentation = "https://freemocap.github.io/documentation/"
Github = "https://github.com/freemocap/freemocap_blender_addon"
[tool.bumpver]
current_version = "v2025.01.1035"
version_pattern = "vYYYY.0M.BUILD[-TAG]"
commit_message = "Bump version {old_version} -> {new_version}"
commit = true
tag = true
push = true
[tool.bumpver.file_patterns]
"ajc27_freemocap_blender_addon/__init__.py" = ["{version}"]