mv version str from setup.py to ffmpeg/__init__.py

This commit is contained in:
sota_masuda 2022-01-16 23:37:12 +09:00
parent f3079726fa
commit cf42883c70
2 changed files with 8 additions and 1 deletions

View File

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

View File

@ -1,7 +1,12 @@
from tabnanny import verbose
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
)