kinemotion 0.5.0__tar.gz → 0.5.4__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.

Potentially problematic release.


This version of kinemotion might be problematic. Click here for more details.

Files changed (38) hide show
  1. kinemotion-0.5.4/.github/workflows/release.yml +45 -0
  2. kinemotion-0.5.4/CHANGELOG.md +31 -0
  3. {kinemotion-0.5.0 → kinemotion-0.5.4}/PKG-INFO +7 -1
  4. {kinemotion-0.5.0 → kinemotion-0.5.4}/README.md +6 -0
  5. {kinemotion-0.5.0 → kinemotion-0.5.4}/pyproject.toml +20 -6
  6. {kinemotion-0.5.0 → kinemotion-0.5.4}/.gitignore +0 -0
  7. {kinemotion-0.5.0 → kinemotion-0.5.4}/.pre-commit-config.yaml +0 -0
  8. {kinemotion-0.5.0 → kinemotion-0.5.4}/.tool-versions +0 -0
  9. {kinemotion-0.5.0 → kinemotion-0.5.4}/CLAUDE.md +0 -0
  10. {kinemotion-0.5.0 → kinemotion-0.5.4}/GEMINI.md +0 -0
  11. {kinemotion-0.5.0 → kinemotion-0.5.4}/LICENSE +0 -0
  12. {kinemotion-0.5.0 → kinemotion-0.5.4}/docs/ERRORS_FINDINGS.md +0 -0
  13. {kinemotion-0.5.0 → kinemotion-0.5.4}/docs/FRAMERATE.md +0 -0
  14. {kinemotion-0.5.0 → kinemotion-0.5.4}/docs/IMPLEMENTATION_PLAN.md +0 -0
  15. {kinemotion-0.5.0 → kinemotion-0.5.4}/docs/IMU_METADATA_PRESERVATION.md +0 -0
  16. {kinemotion-0.5.0 → kinemotion-0.5.4}/docs/PARAMETERS.md +0 -0
  17. {kinemotion-0.5.0 → kinemotion-0.5.4}/docs/VALIDATION_PLAN.md +0 -0
  18. {kinemotion-0.5.0 → kinemotion-0.5.4}/examples/programmatic_usage.py +0 -0
  19. {kinemotion-0.5.0 → kinemotion-0.5.4}/src/kinemotion/__init__.py +0 -0
  20. {kinemotion-0.5.0 → kinemotion-0.5.4}/src/kinemotion/cli.py +0 -0
  21. {kinemotion-0.5.0 → kinemotion-0.5.4}/src/kinemotion/core/__init__.py +0 -0
  22. {kinemotion-0.5.0 → kinemotion-0.5.4}/src/kinemotion/core/filtering.py +0 -0
  23. {kinemotion-0.5.0 → kinemotion-0.5.4}/src/kinemotion/core/pose.py +0 -0
  24. {kinemotion-0.5.0 → kinemotion-0.5.4}/src/kinemotion/core/smoothing.py +0 -0
  25. {kinemotion-0.5.0 → kinemotion-0.5.4}/src/kinemotion/core/video_io.py +0 -0
  26. {kinemotion-0.5.0 → kinemotion-0.5.4}/src/kinemotion/dropjump/__init__.py +0 -0
  27. {kinemotion-0.5.0 → kinemotion-0.5.4}/src/kinemotion/dropjump/analysis.py +0 -0
  28. {kinemotion-0.5.0 → kinemotion-0.5.4}/src/kinemotion/dropjump/cli.py +0 -0
  29. {kinemotion-0.5.0 → kinemotion-0.5.4}/src/kinemotion/dropjump/debug_overlay.py +0 -0
  30. {kinemotion-0.5.0 → kinemotion-0.5.4}/src/kinemotion/dropjump/kinematics.py +0 -0
  31. {kinemotion-0.5.0 → kinemotion-0.5.4}/tests/__init__.py +0 -0
  32. {kinemotion-0.5.0 → kinemotion-0.5.4}/tests/test_adaptive_threshold.py +0 -0
  33. {kinemotion-0.5.0 → kinemotion-0.5.4}/tests/test_aspect_ratio.py +0 -0
  34. {kinemotion-0.5.0 → kinemotion-0.5.4}/tests/test_com_estimation.py +0 -0
  35. {kinemotion-0.5.0 → kinemotion-0.5.4}/tests/test_contact_detection.py +0 -0
  36. {kinemotion-0.5.0 → kinemotion-0.5.4}/tests/test_filtering.py +0 -0
  37. {kinemotion-0.5.0 → kinemotion-0.5.4}/tests/test_kinematics.py +0 -0
  38. {kinemotion-0.5.0 → kinemotion-0.5.4}/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.0
3
+ Version: 0.5.4
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
+ [![PyPI version](https://badge.fury.io/py/kinemotion.svg)](https://badge.fury.io/py/kinemotion)
32
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
33
+ [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
34
+ [![Checked with mypy](http://www.mypy-lang.org/static/mypy_badge.svg)](http://mypy-lang.org/)
35
+ [![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](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
+ [![PyPI version](https://badge.fury.io/py/kinemotion.svg)](https://badge.fury.io/py/kinemotion)
4
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
+ [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
6
+ [![Checked with mypy](http://www.mypy-lang.org/static/mypy_badge.svg)](http://mypy-lang.org/)
7
+ [![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](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.0"
3
+ version = "0.5.4"
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