Skip to content

Commit

Permalink
fix(setup): Include ffprobe
Browse files Browse the repository at this point in the history
  • Loading branch information
yshalsager committed Aug 19, 2022
1 parent 53f682d commit cb547bf
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,13 @@
__version__ = "1.0.0"
base = None
include_files: List[str] = []

ffmpeg_files: List[str] = ["ffmpeg.exe", "ffprobe.exe"]

if sys.platform == "win32":
base = "Win32GUI"
if (Path(__file__).parent / "ffmpeg.exe").exists():
include_files.append("ffmpeg.exe")
for file in ffmpeg_files:
if (Path(__file__).parent / file).exists():
include_files.append(file)

includes = ["tkinter"]
excludes = ["matplotlib", "sqlite3"]
Expand Down

0 comments on commit cb547bf

Please sign in to comment.