videopython 0.1.4__tar.gz → 0.1.41__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 videopython might be problematic. Click here for more details.

Files changed (33) hide show
  1. {videopython-0.1.4 → videopython-0.1.41}/PKG-INFO +1 -1
  2. {videopython-0.1.4 → videopython-0.1.41}/pyproject.toml +1 -1
  3. videopython-0.1.41/src/videopython/base/exceptions.py +2 -0
  4. {videopython-0.1.4 → videopython-0.1.41}/src/videopython/utils/image.py +1 -1
  5. {videopython-0.1.4 → videopython-0.1.41}/src/videopython.egg-info/PKG-INFO +1 -1
  6. {videopython-0.1.4 → videopython-0.1.41}/src/videopython.egg-info/SOURCES.txt +1 -0
  7. {videopython-0.1.4 → videopython-0.1.41}/LICENSE +0 -0
  8. {videopython-0.1.4 → videopython-0.1.41}/README.md +0 -0
  9. {videopython-0.1.4 → videopython-0.1.41}/requirements-dev.txt +0 -0
  10. {videopython-0.1.4 → videopython-0.1.41}/requirements-generation.txt +0 -0
  11. {videopython-0.1.4 → videopython-0.1.41}/requirements.txt +0 -0
  12. {videopython-0.1.4 → videopython-0.1.41}/setup.cfg +0 -0
  13. {videopython-0.1.4 → videopython-0.1.41}/src/videopython/base/__init__.py +0 -0
  14. {videopython-0.1.4 → videopython-0.1.41}/src/videopython/base/compose.py +0 -0
  15. {videopython-0.1.4 → videopython-0.1.41}/src/videopython/base/effects.py +0 -0
  16. {videopython-0.1.4 → videopython-0.1.41}/src/videopython/base/transforms.py +0 -0
  17. {videopython-0.1.4 → videopython-0.1.41}/src/videopython/base/transitions.py +0 -0
  18. {videopython-0.1.4 → videopython-0.1.41}/src/videopython/base/video.py +0 -0
  19. {videopython-0.1.4 → videopython-0.1.41}/src/videopython/generation/__init__.py +0 -0
  20. {videopython-0.1.4 → videopython-0.1.41}/src/videopython/generation/audio.py +0 -0
  21. {videopython-0.1.4 → videopython-0.1.41}/src/videopython/generation/image.py +0 -0
  22. {videopython-0.1.4 → videopython-0.1.41}/src/videopython/generation/video.py +0 -0
  23. {videopython-0.1.4 → videopython-0.1.41}/src/videopython/utils/__init__.py +0 -0
  24. {videopython-0.1.4 → videopython-0.1.41}/src/videopython/utils/common.py +0 -0
  25. {videopython-0.1.4 → videopython-0.1.41}/src/videopython.egg-info/dependency_links.txt +0 -0
  26. {videopython-0.1.4 → videopython-0.1.41}/src/videopython.egg-info/requires.txt +0 -0
  27. {videopython-0.1.4 → videopython-0.1.41}/src/videopython.egg-info/top_level.txt +0 -0
  28. {videopython-0.1.4 → videopython-0.1.41}/tests/test_compose.py +0 -0
  29. {videopython-0.1.4 → videopython-0.1.41}/tests/test_effects.py +0 -0
  30. {videopython-0.1.4 → videopython-0.1.41}/tests/test_transforms.py +0 -0
  31. {videopython-0.1.4 → videopython-0.1.41}/tests/test_transitions.py +0 -0
  32. {videopython-0.1.4 → videopython-0.1.41}/tests/test_utils.py +0 -0
  33. {videopython-0.1.4 → videopython-0.1.41}/tests/test_video.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: videopython
3
- Version: 0.1.4
3
+ Version: 0.1.41
4
4
  Summary: Minimal video generation and processing library.
5
5
  Author-email: Bartosz Wójtowicz <bartoszwojtowicz@outlook.com>, Bartosz Rudnikowicz <bartoszrudnikowicz840@gmail.com>, Piotr Pukisz <piotr.pukisz@gmail.com>
6
6
  License: Apache License
@@ -11,7 +11,7 @@ include = ["videopython.*"]
11
11
 
12
12
  [project]
13
13
  name = "videopython"
14
- version = "0.1.4"
14
+ version = "0.1.41"
15
15
  description = "Minimal video generation and processing library."
16
16
  readme = "README.md"
17
17
  requires-python = ">=3.10"
@@ -0,0 +1,2 @@
1
+ class OutOfBoundsError(Exception):
2
+ pass
@@ -4,8 +4,8 @@ import cv2
4
4
  import numpy as np
5
5
  from PIL import Image, ImageDraw, ImageFont
6
6
 
7
+ from videopython.base.exceptions import OutOfBoundsError
7
8
  from videopython.base.video import Video
8
- from videopython.exceptions import OutOfBoundsError
9
9
 
10
10
 
11
11
  class ImageText:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: videopython
3
- Version: 0.1.4
3
+ Version: 0.1.41
4
4
  Summary: Minimal video generation and processing library.
5
5
  Author-email: Bartosz Wójtowicz <bartoszwojtowicz@outlook.com>, Bartosz Rudnikowicz <bartoszrudnikowicz840@gmail.com>, Piotr Pukisz <piotr.pukisz@gmail.com>
6
6
  License: Apache License
@@ -12,6 +12,7 @@ src/videopython.egg-info/top_level.txt
12
12
  src/videopython/base/__init__.py
13
13
  src/videopython/base/compose.py
14
14
  src/videopython/base/effects.py
15
+ src/videopython/base/exceptions.py
15
16
  src/videopython/base/transforms.py
16
17
  src/videopython/base/transitions.py
17
18
  src/videopython/base/video.py
File without changes
File without changes
File without changes