Skip to content

Commit

Permalink
fix #166 typed-ffmpeg (#183)
Browse files Browse the repository at this point in the history
* fix #166 typed-ffmpeg

* fix

* fix
  • Loading branch information
lucemia authored Jan 14, 2024
1 parent 82ede57 commit 02d1c2b
Show file tree
Hide file tree
Showing 49 changed files with 16 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ version = "0.1.0"
description = ""
authors = ["lucemia <lucemia@gmail.com>"]
readme = "README.md"
packages = [{ include = "ffmpeg", from = "src" }]
include = ["ffmpeg/py.typed"]
packages = [{ include = "typed_ffmpeg", from = "src" }]
include = ["typed_ffmpeg/py.typed"]
exclude = ["**/tests"]

[tool.poetry.dependencies]
Expand Down
Empty file removed src/ffmpeg/tests/__init__.py
Empty file.
Empty file removed src/ffmpeg/utils/__init__.py
Empty file.
Empty file removed src/ffmpeg/utils/tests/__init__.py
Empty file.
6 changes: 6 additions & 0 deletions src/typed_ffmpeg/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
from . import filters, nodes, streams
from .base import input, merge_outputs, output
from .probe import probe

__all__ = ["input", "output", "merge_outputs", "probe", "filters"]
__all__ += streams.__all__ + nodes.__all__
File renamed without changes.
File renamed without changes.
3 changes: 3 additions & 0 deletions src/typed_ffmpeg/nodes/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from .base import Stream

__all__ = ["Stream"]
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
5 changes: 5 additions & 0 deletions src/typed_ffmpeg/streams/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from .audio import AudioStream
from .av import AVStream
from .video import VideoStream

__all__ = ["AudioStream", "VideoStream", "AVStream"]
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 02d1c2b

Please sign in to comment.