mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-06 04:15:44 +08:00
Update setup.py
This commit is contained in:
parent
71500ce09d
commit
a0d081ade1
29
setup.py
29
setup.py
@ -1,7 +1,29 @@
|
|||||||
from ffmpeg._filters import __all__ as filter_names
|
|
||||||
from distutils.core import setup
|
from distutils.core import setup
|
||||||
|
from ffmpeg._filters import __all__ as filter_names
|
||||||
|
from textwrap import dedent
|
||||||
|
import subprocess
|
||||||
|
|
||||||
|
|
||||||
|
def get_current_commit_hash():
|
||||||
|
p = subprocess.Popen(['git', 'rev-parse', 'HEAD'], stdout=subprocess.PIPE)
|
||||||
|
commit_hash = p.communicate()[0].strip()
|
||||||
|
assert p.returncode == 0, '`git rev-parse HEAD` failed'
|
||||||
|
return commit_hash
|
||||||
|
|
||||||
|
|
||||||
|
long_description = dedent("""
|
||||||
|
ffmpeg-python: Python bindings for FFmpeg
|
||||||
|
=========================================
|
||||||
|
|
||||||
|
:Github: https://github.com/kkroening/ffmpeg-python
|
||||||
|
:API Reference: https://kkroening.github.io/ffmpeg-python/
|
||||||
|
""")
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
commit_hash = get_current_commit_hash()
|
||||||
|
download_url = 'https://github.com/kkroening/ffmpeg-python/archive/{}.zip'.format(commit_hash)
|
||||||
|
|
||||||
file_formats = [
|
file_formats = [
|
||||||
'aac',
|
'aac',
|
||||||
'ac3',
|
'ac3',
|
||||||
@ -45,12 +67,13 @@ keywords = misc_keywords + file_formats + filter_names
|
|||||||
setup(
|
setup(
|
||||||
name = 'ffmpeg-python',
|
name = 'ffmpeg-python',
|
||||||
packages = ['ffmpeg'],
|
packages = ['ffmpeg'],
|
||||||
version = '0.1.1',
|
version = '0.1.2',
|
||||||
description = 'Python bindings for FFmpeg - with support for complex filtering',
|
description = 'Python bindings for FFmpeg - with support for complex filtering',
|
||||||
author = 'Karl Kroening',
|
author = 'Karl Kroening',
|
||||||
author_email = 'karlk@kralnet.us',
|
author_email = 'karlk@kralnet.us',
|
||||||
url = 'https://github.com/kkroening/ffmpeg-python',
|
url = 'https://github.com/kkroening/ffmpeg-python',
|
||||||
download_url = 'https://github.com/kkroening/ffmpeg-python/archive/0.1.1.tar.gz',
|
download_url = download_url,
|
||||||
classifiers = [],
|
classifiers = [],
|
||||||
keywords = keywords,
|
keywords = keywords,
|
||||||
|
long_description = long_description,
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user