mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-06 04:15:44 +08:00
mv version str from setup.py to ffmpeg/__init__.py
This commit is contained in:
parent
f3079726fa
commit
cf42883c70
@ -20,3 +20,5 @@ __all__ = (
|
|||||||
+ _view.__all__
|
+ _view.__all__
|
||||||
+ _filters.__all__
|
+ _filters.__all__
|
||||||
)
|
)
|
||||||
|
|
||||||
|
__version__ = "0.2.0"
|
||||||
|
7
setup.py
7
setup.py
@ -1,7 +1,12 @@
|
|||||||
|
from tabnanny import verbose
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
from textwrap import dedent
|
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(
|
download_url = 'https://github.com/kkroening/ffmpeg-python/archive/v{}.zip'.format(
|
||||||
version
|
version
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user