mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-05 04:22:51 +08:00
Update setup.py
This commit is contained in:
parent
190593b35f
commit
b002e8c31b
@ -1,5 +1,8 @@
|
||||
2.6.9
|
||||
2.7.12
|
||||
3.3.6
|
||||
3.4.6
|
||||
3.5.3
|
||||
3.6.1
|
||||
pypy-5.7.0
|
||||
jython-2.7.0
|
||||
|
14
setup.py
14
setup.py
@ -2,12 +2,8 @@ from setuptools import setup
|
||||
from textwrap import dedent
|
||||
import subprocess
|
||||
|
||||
|
||||
def get_current_commit_hash():
|
||||
p = subprocess.Popen(['git', 'rev-parse', 'HEAD'], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||
commit_hash = p.communicate()[0].strip()
|
||||
return commit_hash
|
||||
|
||||
version = '0.1.6'
|
||||
download_url = 'https://github.com/kkroening/ffmpeg-python/archive/v{}.zip'.format(version)
|
||||
|
||||
long_description = dedent("""\
|
||||
ffmpeg-python: Python bindings for FFmpeg
|
||||
@ -18,10 +14,6 @@ long_description = dedent("""\
|
||||
""")
|
||||
|
||||
|
||||
|
||||
commit_hash = get_current_commit_hash()
|
||||
download_url = 'https://github.com/kkroening/ffmpeg-python/archive/{}.zip'.format(commit_hash)
|
||||
|
||||
file_formats = [
|
||||
'aac',
|
||||
'ac3',
|
||||
@ -67,7 +59,7 @@ setup(
|
||||
packages=['ffmpeg'],
|
||||
setup_requires=['pytest-runner'],
|
||||
tests_require=['pytest'],
|
||||
version='0.1.6',
|
||||
version=version,
|
||||
description='Python bindings for FFmpeg - with support for complex filtering',
|
||||
author='Karl Kroening',
|
||||
author_email='karlk@kralnet.us',
|
||||
|
Loading…
x
Reference in New Issue
Block a user