Commit
·
90341f1
1
Parent(s):
19c1c65
Add mermaid dependency and update requirements
Browse files- Added mermaid>=0.1.0 to all requirements files for documentation support
- Updated pyproject.toml, requirements.txt, demo/requirements.txt, and backend/requirements.txt
- Enables proper rendering of processing pipeline diagrams in About tab
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <[email protected]>
- .claude/settings.local.json +2 -1
- backend/requirements.txt +2 -0
- demo/requirements.txt +2 -1
- pyproject.toml +2 -1
- requirements.txt +2 -1
.claude/settings.local.json
CHANGED
|
@@ -4,7 +4,8 @@
|
|
| 4 |
"Bash(/Users/csabi/.nvm/versions/node/v18.20.5/lib/node_modules/@anthropic-ai/claude-code/vendor/ripgrep/arm64-darwin/rg -n \"smooth_metrics\" /Users/csabi/Develop/Laban-Movement-Analysis/backend/gradio_labanmovementanalysis/notation_engine.py)",
|
| 5 |
"Bash(/Users/csabi/.nvm/versions/node/v18.20.5/lib/node_modules/@anthropic-ai/claude-code/vendor/ripgrep/arm64-darwin/rg -n \"_smooth_metrics\" /Users/csabi/Develop/Laban-Movement-Analysis/backend/gradio_labanmovementanalysis/notation_engine.py)",
|
| 6 |
"Bash(/Users/csabi/.nvm/versions/node/v18.20.5/lib/node_modules/@anthropic-ai/claude-code/vendor/ripgrep/arm64-darwin/rg -n \"# Footer\" /Users/csabi/Develop/Laban-Movement-Analysis/demo/app.py)",
|
| 7 |
-
"Bash(find:*)"
|
|
|
|
| 8 |
],
|
| 9 |
"deny": []
|
| 10 |
}
|
|
|
|
| 4 |
"Bash(/Users/csabi/.nvm/versions/node/v18.20.5/lib/node_modules/@anthropic-ai/claude-code/vendor/ripgrep/arm64-darwin/rg -n \"smooth_metrics\" /Users/csabi/Develop/Laban-Movement-Analysis/backend/gradio_labanmovementanalysis/notation_engine.py)",
|
| 5 |
"Bash(/Users/csabi/.nvm/versions/node/v18.20.5/lib/node_modules/@anthropic-ai/claude-code/vendor/ripgrep/arm64-darwin/rg -n \"_smooth_metrics\" /Users/csabi/Develop/Laban-Movement-Analysis/backend/gradio_labanmovementanalysis/notation_engine.py)",
|
| 6 |
"Bash(/Users/csabi/.nvm/versions/node/v18.20.5/lib/node_modules/@anthropic-ai/claude-code/vendor/ripgrep/arm64-darwin/rg -n \"# Footer\" /Users/csabi/Develop/Laban-Movement-Analysis/demo/app.py)",
|
| 7 |
+
"Bash(find:*)",
|
| 8 |
+
"Bash(git add:*)"
|
| 9 |
],
|
| 10 |
"deny": []
|
| 11 |
}
|
backend/requirements.txt
CHANGED
|
@@ -7,6 +7,8 @@ ultralytics>=8.0.0
|
|
| 7 |
tensorflow>=2.8.0
|
| 8 |
tensorflow-hub>=0.12.0
|
| 9 |
|
|
|
|
|
|
|
| 10 |
|
| 11 |
# Optional dependencies for development
|
| 12 |
# pytest>=7.0.0
|
|
|
|
| 7 |
tensorflow>=2.8.0
|
| 8 |
tensorflow-hub>=0.12.0
|
| 9 |
|
| 10 |
+
# For documentation and visualization
|
| 11 |
+
mermaid>=0.1.0
|
| 12 |
|
| 13 |
# Optional dependencies for development
|
| 14 |
# pytest>=7.0.0
|
demo/requirements.txt
CHANGED
|
@@ -1 +1,2 @@
|
|
| 1 |
-
gradio_labanmovementanalysis
|
|
|
|
|
|
| 1 |
+
gradio_labanmovementanalysis
|
| 2 |
+
mermaid>=0.1.0
|
pyproject.toml
CHANGED
|
@@ -25,7 +25,8 @@ dependencies = [
|
|
| 25 |
"tensorflow>=2.8.0",
|
| 26 |
"tensorflow-hub>=0.12.0",
|
| 27 |
"yt-dlp>=2025.05.22",
|
| 28 |
-
"gradio_overlay_video>=0.0.9"
|
|
|
|
| 29 |
]
|
| 30 |
|
| 31 |
[project.optional-dependencies]
|
|
|
|
| 25 |
"tensorflow>=2.8.0",
|
| 26 |
"tensorflow-hub>=0.12.0",
|
| 27 |
"yt-dlp>=2025.05.22",
|
| 28 |
+
"gradio_overlay_video>=0.0.9",
|
| 29 |
+
"mermaid>=0.1.0"
|
| 30 |
]
|
| 31 |
|
| 32 |
[project.optional-dependencies]
|
requirements.txt
CHANGED
|
@@ -6,4 +6,5 @@
|
|
| 6 |
tensorflow>=2.8.0,
|
| 7 |
tensorflow-hub>=0.12.0,
|
| 8 |
yt-dlp>=2025.05.22,
|
| 9 |
-
gradio_overlay_video>=0.0.9
|
|
|
|
|
|
| 6 |
tensorflow>=2.8.0,
|
| 7 |
tensorflow-hub>=0.12.0,
|
| 8 |
yt-dlp>=2025.05.22,
|
| 9 |
+
gradio_overlay_video>=0.0.9,
|
| 10 |
+
mermaid>=0.1.0
|