videopython 0.25.2__tar.gz → 0.25.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.
Files changed (53) hide show
  1. {videopython-0.25.2 → videopython-0.25.3}/PKG-INFO +4 -3
  2. {videopython-0.25.2 → videopython-0.25.3}/README.md +1 -1
  3. {videopython-0.25.2 → videopython-0.25.3}/pyproject.toml +3 -2
  4. {videopython-0.25.2 → videopython-0.25.3}/.gitignore +0 -0
  5. {videopython-0.25.2 → videopython-0.25.3}/LICENSE +0 -0
  6. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/__init__.py +0 -0
  7. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/ai/__init__.py +0 -0
  8. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/ai/_device.py +0 -0
  9. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/ai/dubbing/__init__.py +0 -0
  10. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/ai/dubbing/dubber.py +0 -0
  11. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/ai/dubbing/models.py +0 -0
  12. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/ai/dubbing/pipeline.py +0 -0
  13. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/ai/dubbing/timing.py +0 -0
  14. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/ai/generation/__init__.py +0 -0
  15. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/ai/generation/audio.py +0 -0
  16. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/ai/generation/image.py +0 -0
  17. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/ai/generation/translation.py +0 -0
  18. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/ai/generation/video.py +0 -0
  19. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/ai/registry.py +0 -0
  20. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/ai/swapping/__init__.py +0 -0
  21. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/ai/swapping/inpainter.py +0 -0
  22. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/ai/swapping/models.py +0 -0
  23. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/ai/swapping/segmenter.py +0 -0
  24. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/ai/swapping/swapper.py +0 -0
  25. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/ai/transforms.py +0 -0
  26. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/ai/understanding/__init__.py +0 -0
  27. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/ai/understanding/audio.py +0 -0
  28. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/ai/understanding/image.py +0 -0
  29. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/ai/understanding/separation.py +0 -0
  30. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/ai/understanding/temporal.py +0 -0
  31. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/ai/video_analysis.py +0 -0
  32. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/base/__init__.py +0 -0
  33. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/base/audio/__init__.py +0 -0
  34. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/base/audio/analysis.py +0 -0
  35. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/base/audio/audio.py +0 -0
  36. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/base/combine.py +0 -0
  37. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/base/description.py +0 -0
  38. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/base/effects.py +0 -0
  39. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/base/exceptions.py +0 -0
  40. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/base/progress.py +0 -0
  41. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/base/registry.py +0 -0
  42. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/base/scene.py +0 -0
  43. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/base/text/__init__.py +0 -0
  44. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/base/text/overlay.py +0 -0
  45. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/base/text/transcription.py +0 -0
  46. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/base/transforms.py +0 -0
  47. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/base/transitions.py +0 -0
  48. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/base/utils.py +0 -0
  49. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/base/video.py +0 -0
  50. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/editing/__init__.py +0 -0
  51. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/editing/multicam.py +0 -0
  52. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/editing/video_edit.py +0 -0
  53. {videopython-0.25.2 → videopython-0.25.3}/src/videopython/py.typed +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: videopython
3
- Version: 0.25.2
3
+ Version: 0.25.3
4
4
  Summary: Minimal video generation and processing library.
5
5
  Project-URL: Homepage, https://videopython.com
6
6
  Project-URL: Repository, https://github.com/bartwojtowicz/videopython/
@@ -15,7 +15,8 @@ Classifier: Programming Language :: Python :: 3
15
15
  Classifier: Programming Language :: Python :: 3.10
16
16
  Classifier: Programming Language :: Python :: 3.11
17
17
  Classifier: Programming Language :: Python :: 3.12
18
- Requires-Python: <3.13,>=3.10
18
+ Classifier: Programming Language :: Python :: 3.13
19
+ Requires-Python: <3.14,>=3.10
19
20
  Requires-Dist: numpy>=1.25.2
20
21
  Requires-Dist: opencv-python-headless>=4.9.0.80
21
22
  Requires-Dist: pillow>=12.1.1
@@ -81,7 +82,7 @@ pip install videopython # core video/audio editing
81
82
  pip install "videopython[ai]" # + local AI features (GPU recommended)
82
83
  ```
83
84
 
84
- Python `>=3.10, <3.13`. AI features run locally - no cloud API keys required, but model weights are downloaded on first use.
85
+ Python `>=3.10, <3.14`. AI features run locally - no cloud API keys required, but model weights are downloaded on first use.
85
86
 
86
87
  ## Quick Start
87
88
 
@@ -30,7 +30,7 @@ pip install videopython # core video/audio editing
30
30
  pip install "videopython[ai]" # + local AI features (GPU recommended)
31
31
  ```
32
32
 
33
- Python `>=3.10, <3.13`. AI features run locally - no cloud API keys required, but model weights are downloaded on first use.
33
+ Python `>=3.10, <3.14`. AI features run locally - no cloud API keys required, but model weights are downloaded on first use.
34
34
 
35
35
  ## Quick Start
36
36
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "videopython"
3
- version = "0.25.2"
3
+ version = "0.25.3"
4
4
  description = "Minimal video generation and processing library."
5
5
  authors = [
6
6
  { name = "Bartosz Wójtowicz", email = "bartoszwojtowicz@outlook.com" },
@@ -9,7 +9,7 @@ authors = [
9
9
  ]
10
10
  license = { text = "Apache-2.0" }
11
11
  readme = "README.md"
12
- requires-python = ">=3.10, <3.13"
12
+ requires-python = ">=3.10, <3.14"
13
13
  keywords = [
14
14
  "python",
15
15
  "videopython",
@@ -27,6 +27,7 @@ classifiers = [
27
27
  "Programming Language :: Python :: 3.10",
28
28
  "Programming Language :: Python :: 3.11",
29
29
  "Programming Language :: Python :: 3.12",
30
+ "Programming Language :: Python :: 3.13",
30
31
  "Operating System :: OS Independent",
31
32
  ]
32
33
 
File without changes
File without changes