parallel-matplotlib-animation 0.1.0__tar.gz → 0.1.1__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.
- {parallel_matplotlib_animation-0.1.0 → parallel_matplotlib_animation-0.1.1}/PKG-INFO +2 -1
- {parallel_matplotlib_animation-0.1.0 → parallel_matplotlib_animation-0.1.1}/pyproject.toml +4 -1
- {parallel_matplotlib_animation-0.1.0 → parallel_matplotlib_animation-0.1.1}/LICENSE +0 -0
- {parallel_matplotlib_animation-0.1.0 → parallel_matplotlib_animation-0.1.1}/README.md +0 -0
- {parallel_matplotlib_animation-0.1.0 → parallel_matplotlib_animation-0.1.1}/src/parallel_animate/__init__.py +0 -0
- {parallel_matplotlib_animation-0.1.0 → parallel_matplotlib_animation-0.1.1}/src/parallel_animate/animator.py +0 -0
- {parallel_matplotlib_animation-0.1.0 → parallel_matplotlib_animation-0.1.1}/src/parallel_animate/examples/__init__.py +0 -0
- {parallel_matplotlib_animation-0.1.0 → parallel_matplotlib_animation-0.1.1}/src/parallel_animate/examples/multi_panel_animation.py +0 -0
- {parallel_matplotlib_animation-0.1.0 → parallel_matplotlib_animation-0.1.1}/src/parallel_animate/examples/scaling_test.py +0 -0
- {parallel_matplotlib_animation-0.1.0 → parallel_matplotlib_animation-0.1.1}/src/parallel_animate/examples/simple_wave_animation.py +0 -0
- {parallel_matplotlib_animation-0.1.0 → parallel_matplotlib_animation-0.1.1}/src/parallel_animate/examples/very_complex_animation.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: parallel-matplotlib-animation
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: Animate matplotlib figures into videos, in parallel but with efficient caching
|
|
5
5
|
License-File: LICENSE
|
|
6
6
|
Author: Sibo Wang-Chen
|
|
@@ -17,6 +17,7 @@ Requires-Dist: av (>=14.0)
|
|
|
17
17
|
Requires-Dist: matplotlib (>=3.10.0)
|
|
18
18
|
Requires-Dist: numpy (>=2,<3)
|
|
19
19
|
Requires-Dist: tqdm (>=4.67)
|
|
20
|
+
Project-URL: Repository, https://github.com/sibocw/parallel-matplotlib-animation
|
|
20
21
|
Description-Content-Type: text/markdown
|
|
21
22
|
|
|
22
23
|
# parallel-matplotlib-animation
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "parallel-matplotlib-animation"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.1"
|
|
4
4
|
description = "Animate matplotlib figures into videos, in parallel but with efficient caching"
|
|
5
5
|
authors = [
|
|
6
6
|
{name = "Sibo Wang-Chen",email = "sibo.wang@epfl.ch"}
|
|
@@ -15,6 +15,9 @@ dependencies = [
|
|
|
15
15
|
"Pillow>=11.0",
|
|
16
16
|
]
|
|
17
17
|
|
|
18
|
+
[project.urls]
|
|
19
|
+
repository = "https://github.com/sibocw/parallel-matplotlib-animation"
|
|
20
|
+
|
|
18
21
|
[tool.poetry]
|
|
19
22
|
packages = [{include = "parallel_animate", from = "src"}]
|
|
20
23
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|