kinemotion 0.5.0__tar.gz → 0.5.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- kinemotion-0.5.3/.github/workflows/release.yml +45 -0
- kinemotion-0.5.3/CHANGELOG.md +31 -0
- {kinemotion-0.5.0 → kinemotion-0.5.3}/PKG-INFO +7 -1
- {kinemotion-0.5.0 → kinemotion-0.5.3}/README.md +6 -0
- {kinemotion-0.5.0 → kinemotion-0.5.3}/pyproject.toml +20 -6
- {kinemotion-0.5.0 → kinemotion-0.5.3}/.gitignore +0 -0
- {kinemotion-0.5.0 → kinemotion-0.5.3}/.pre-commit-config.yaml +0 -0
- {kinemotion-0.5.0 → kinemotion-0.5.3}/.tool-versions +0 -0
- {kinemotion-0.5.0 → kinemotion-0.5.3}/CLAUDE.md +0 -0
- {kinemotion-0.5.0 → kinemotion-0.5.3}/GEMINI.md +0 -0
- {kinemotion-0.5.0 → kinemotion-0.5.3}/LICENSE +0 -0
- {kinemotion-0.5.0 → kinemotion-0.5.3}/docs/ERRORS_FINDINGS.md +0 -0
- {kinemotion-0.5.0 → kinemotion-0.5.3}/docs/FRAMERATE.md +0 -0
- {kinemotion-0.5.0 → kinemotion-0.5.3}/docs/IMPLEMENTATION_PLAN.md +0 -0
- {kinemotion-0.5.0 → kinemotion-0.5.3}/docs/IMU_METADATA_PRESERVATION.md +0 -0
- {kinemotion-0.5.0 → kinemotion-0.5.3}/docs/PARAMETERS.md +0 -0
- {kinemotion-0.5.0 → kinemotion-0.5.3}/docs/VALIDATION_PLAN.md +0 -0
- {kinemotion-0.5.0 → kinemotion-0.5.3}/examples/programmatic_usage.py +0 -0
- {kinemotion-0.5.0 → kinemotion-0.5.3}/src/kinemotion/__init__.py +0 -0
- {kinemotion-0.5.0 → kinemotion-0.5.3}/src/kinemotion/cli.py +0 -0
- {kinemotion-0.5.0 → kinemotion-0.5.3}/src/kinemotion/core/__init__.py +0 -0
- {kinemotion-0.5.0 → kinemotion-0.5.3}/src/kinemotion/core/filtering.py +0 -0
- {kinemotion-0.5.0 → kinemotion-0.5.3}/src/kinemotion/core/pose.py +0 -0
- {kinemotion-0.5.0 → kinemotion-0.5.3}/src/kinemotion/core/smoothing.py +0 -0
- {kinemotion-0.5.0 → kinemotion-0.5.3}/src/kinemotion/core/video_io.py +0 -0
- {kinemotion-0.5.0 → kinemotion-0.5.3}/src/kinemotion/dropjump/__init__.py +0 -0
- {kinemotion-0.5.0 → kinemotion-0.5.3}/src/kinemotion/dropjump/analysis.py +0 -0
- {kinemotion-0.5.0 → kinemotion-0.5.3}/src/kinemotion/dropjump/cli.py +0 -0
- {kinemotion-0.5.0 → kinemotion-0.5.3}/src/kinemotion/dropjump/debug_overlay.py +0 -0
- {kinemotion-0.5.0 → kinemotion-0.5.3}/src/kinemotion/dropjump/kinematics.py +0 -0
- {kinemotion-0.5.0 → kinemotion-0.5.3}/tests/__init__.py +0 -0
- {kinemotion-0.5.0 → kinemotion-0.5.3}/tests/test_adaptive_threshold.py +0 -0
- {kinemotion-0.5.0 → kinemotion-0.5.3}/tests/test_aspect_ratio.py +0 -0
- {kinemotion-0.5.0 → kinemotion-0.5.3}/tests/test_com_estimation.py +0 -0
- {kinemotion-0.5.0 → kinemotion-0.5.3}/tests/test_contact_detection.py +0 -0
- {kinemotion-0.5.0 → kinemotion-0.5.3}/tests/test_filtering.py +0 -0
- {kinemotion-0.5.0 → kinemotion-0.5.3}/tests/test_kinematics.py +0 -0
- {kinemotion-0.5.0 → kinemotion-0.5.3}/tests/test_polyorder.py +0 -0
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
name: Release
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
release:
|
|
10
|
+
name: Create Release
|
|
11
|
+
runs-on: ubuntu-latest
|
|
12
|
+
permissions:
|
|
13
|
+
contents: write
|
|
14
|
+
steps:
|
|
15
|
+
- name: Checkout repository
|
|
16
|
+
uses: actions/checkout@v4
|
|
17
|
+
with:
|
|
18
|
+
fetch-depth: 0
|
|
19
|
+
|
|
20
|
+
- name: Set up Python
|
|
21
|
+
uses: actions/setup-python@v5
|
|
22
|
+
with:
|
|
23
|
+
python-version: "3.12"
|
|
24
|
+
|
|
25
|
+
- name: Set up uv
|
|
26
|
+
uses: astral-sh/setup-uv@v5
|
|
27
|
+
with:
|
|
28
|
+
version: "0.8.17"
|
|
29
|
+
|
|
30
|
+
- name: Install dependencies
|
|
31
|
+
run: uv sync
|
|
32
|
+
|
|
33
|
+
- name: Create Release
|
|
34
|
+
env:
|
|
35
|
+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
36
|
+
PYPI_API_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
|
|
37
|
+
run: |
|
|
38
|
+
git config user.name "github-actions"
|
|
39
|
+
git config user.email "github-actions@github.com"
|
|
40
|
+
uv run semantic-release version
|
|
41
|
+
|
|
42
|
+
- name: Publish to PyPI
|
|
43
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
|
44
|
+
with:
|
|
45
|
+
password: ${{ secrets.PYPI_API_TOKEN }}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [Unreleased]
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- Your new feature here.
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
- Your change here.
|
|
15
|
+
|
|
16
|
+
### Deprecated
|
|
17
|
+
- Your deprecated feature here.
|
|
18
|
+
|
|
19
|
+
### Removed
|
|
20
|
+
- Your removed feature here.
|
|
21
|
+
|
|
22
|
+
### Fixed
|
|
23
|
+
- Your bug fix here.
|
|
24
|
+
|
|
25
|
+
### Security
|
|
26
|
+
- Your security fix here.
|
|
27
|
+
|
|
28
|
+
## [0.5.0] - 2025-10-26
|
|
29
|
+
|
|
30
|
+
### Added
|
|
31
|
+
- Initial release of `kinemotion`.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: kinemotion
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.3
|
|
4
4
|
Summary: Video-based kinematic analysis for athletic performance
|
|
5
5
|
Project-URL: Homepage, https://github.com/feniix/kinemotion
|
|
6
6
|
Project-URL: Repository, https://github.com/feniix/kinemotion
|
|
@@ -28,6 +28,12 @@ Description-Content-Type: text/markdown
|
|
|
28
28
|
|
|
29
29
|
# Kinemotion
|
|
30
30
|
|
|
31
|
+
[](https://badge.fury.io/py/kinemotion)
|
|
32
|
+
[](https://opensource.org/licenses/MIT)
|
|
33
|
+
[](https://github.com/psf/black)
|
|
34
|
+
[](http://mypy-lang.org/)
|
|
35
|
+
[](https://github.com/astral-sh/ruff)
|
|
36
|
+
|
|
31
37
|
A video-based kinematic analysis tool for athletic performance. Analyzes side-view drop-jump videos to estimate key performance metrics: ground contact time, flight time, and jump height. Uses MediaPipe pose tracking and advanced kinematics.
|
|
32
38
|
|
|
33
39
|
## Features
|
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Kinemotion
|
|
2
2
|
|
|
3
|
+
[](https://badge.fury.io/py/kinemotion)
|
|
4
|
+
[](https://opensource.org/licenses/MIT)
|
|
5
|
+
[](https://github.com/psf/black)
|
|
6
|
+
[](http://mypy-lang.org/)
|
|
7
|
+
[](https://github.com/astral-sh/ruff)
|
|
8
|
+
|
|
3
9
|
A video-based kinematic analysis tool for athletic performance. Analyzes side-view drop-jump videos to estimate key performance metrics: ground contact time, flight time, and jump height. Uses MediaPipe pose tracking and advanced kinematics.
|
|
4
10
|
|
|
5
11
|
## Features
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "kinemotion"
|
|
3
|
-
version = "0.5.
|
|
3
|
+
version = "0.5.3"
|
|
4
4
|
description = "Video-based kinematic analysis for athletic performance"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.10,<3.13"
|
|
@@ -50,13 +50,9 @@ dev-dependencies = [
|
|
|
50
50
|
"ruff>=0.1.8",
|
|
51
51
|
"mypy>=1.7.0",
|
|
52
52
|
"pre-commit>=3.6.0",
|
|
53
|
+
"python-semantic-release>=9.8.2",
|
|
53
54
|
]
|
|
54
55
|
|
|
55
|
-
[[tool.uv.index]]
|
|
56
|
-
name = "testpypi"
|
|
57
|
-
url = "https://test.pypi.org/simple/"
|
|
58
|
-
publish-url = "https://test.pypi.org/legacy/"
|
|
59
|
-
explicit = true
|
|
60
56
|
|
|
61
57
|
[tool.ruff]
|
|
62
58
|
line-length = 100
|
|
@@ -95,3 +91,21 @@ module = [
|
|
|
95
91
|
"scipy.*",
|
|
96
92
|
]
|
|
97
93
|
ignore_missing_imports = true
|
|
94
|
+
|
|
95
|
+
[tool.semantic_release]
|
|
96
|
+
version_toml = ["pyproject.toml:project.version"]
|
|
97
|
+
branch = "main"
|
|
98
|
+
changelog_file = "CHANGELOG.md"
|
|
99
|
+
build_command = "uv build"
|
|
100
|
+
dist_path = "dist/"
|
|
101
|
+
upload_to_vcs_release = true
|
|
102
|
+
remove_dist = false
|
|
103
|
+
patch_without_tag = false
|
|
104
|
+
major_on_zero = false
|
|
105
|
+
allow_zero_version = true
|
|
106
|
+
commit_message = "chore(release): {version} [skip ci]"
|
|
107
|
+
|
|
108
|
+
[tool.semantic_release.commit_parser_options]
|
|
109
|
+
allowed_tags = ["feat", "fix", "docs", "style", "refactor", "perf", "test", "chore", "build", "ci"]
|
|
110
|
+
minor_tags = ["feat"]
|
|
111
|
+
patch_tags = ["fix", "perf"]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|