Merge 63e66cbfeec62bd6bcbb1e3b9ba5f5b36b8a9c9e into df129c7ba30aaa9ffffb81a48f53aa7253b0b4e6

This commit is contained in:
Sota 2022-07-11 14:03:16 -07:00 committed by GitHub
commit 82dd2332eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View File

@ -20,3 +20,5 @@ __all__ = (
+ _view.__all__
+ _filters.__all__
)
__version__ = "0.2.0"

View File

@ -1,7 +1,11 @@
from setuptools import setup
from textwrap import dedent
version = '0.2.0'
import ffmpeg
version = ffmpeg.__version__
download_url = 'https://github.com/kkroening/ffmpeg-python/archive/v{}.zip'.format(
version
)