File size: 1,593 Bytes
e49993e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
"""
Laban Movement Analysis - Complete Suite
Version Information

Created by: Csaba Bolyós (BladeSzaSza)
Contact: bladeszasza@gmail.com
GitHub: https://github.com/bladeszasza
LinkedIn: https://www.linkedin.com/in/csaba-bolyós-00a11767/
Hugging Face: https://huggingface.co/BladeSzaSza
"""

__version__ = "0.01-beta"
__author__ = "Csaba Bolyós (BladeSzaSza)"
__email__ = "bladeszasza@gmail.com"
__description__ = "Professional movement analysis with pose estimation, AI action recognition, real-time processing, and agent automation"
__url__ = "https://huggingface.co/spaces/BladeSzaSza/laban-movement-analysis"

# Release Information
RELEASE_NOTES = """
🎭 Laban Movement Analysis - Complete Suite v0.01-beta

✨ INITIAL BETA RELEASE ✨

🌟 Core Features:
- 17+ Pose Estimation Models (MediaPipe, MoveNet, YOLO v8/v11 with x variants)
- YouTube & Vimeo URL Support
- Agent API with MCP Integration
- Batch Processing & Movement Filtering
- Professional VIRIDIAN UI Theme

🚀 Technical Stack:
- Gradio 5.0+ Frontend
- OpenCV + MediaPipe + Ultralytics YOLO
- FastAPI Backend Integration

⚠️  Beta Status:
This is a heavy beta release. Features are actively being developed and refined.
Report issues at: https://github.com/bladeszasza/labanmovementanalysis

Created with ❤️ by Csaba Bolyós
"""

def get_version_info():
    """Get detailed version information."""
    return {
        "version": __version__,
        "author": __author__,
        "email": __email__,
        "description": __description__,
        "url": __url__,
        "release_notes": RELEASE_NOTES
    }