2 Commits

Author SHA1 Message Date
10d1954125 check_metadata: state tqdm requirement in setup.py 2023-01-01 18:24:05 +01:00
084b27ecd4 Add missing __init__.py files 2023-01-01 18:22:44 +01:00
4 changed files with 5 additions and 2 deletions

View File

View File

@ -25,7 +25,7 @@ class MediaFile:
duration: int #in sec
def supported_file_extension(filename):
if filename.endswith('.mp4') or filename.endswith('.mkv') or filename.endswith('.webm'):
if filename.endswith('.mp4') or filename.endswith('.mkv'):
return True
return False

View File

@ -9,4 +9,7 @@ setup(
"checkMetadata = checkMetadata.__main__:main"
]
},
)
install_requires=[
'tqdm>=4.62.3'
]
)

View File