Skip to content

Commit

Permalink
Move code to a package (fixes #82)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ch00k committed Dec 19, 2024
1 parent 6972473 commit dee9515
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions ffmpy/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from .ffmpy import FFExecutableNotFoundError, FFmpeg, FFprobe, FFRuntimeError

__all__ = ["FFmpeg", "FFprobe", "FFExecutableNotFoundError", "FFRuntimeError"]
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ classifiers = [
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
]
packages = [{ include = "ffmpy.py" }, { include = "py.typed" }]
packages = [{ include = "ffmpy" }]

[tool.poetry.dependencies]
python = "^3.8"
Expand Down

0 comments on commit dee9515

Please sign in to comment.