mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-05 20:11:11 +08:00
Add keywords in setup.py
This commit is contained in:
parent
74e2fcb6d2
commit
71500ce09d
61
setup.py
61
setup.py
@ -1,4 +1,47 @@
|
|||||||
|
from ffmpeg._filters import __all__ as filter_names
|
||||||
from distutils.core import setup
|
from distutils.core import setup
|
||||||
|
|
||||||
|
|
||||||
|
file_formats = [
|
||||||
|
'aac',
|
||||||
|
'ac3',
|
||||||
|
'avi',
|
||||||
|
'bmp'
|
||||||
|
'flac',
|
||||||
|
'gif',
|
||||||
|
'mov',
|
||||||
|
'mp3',
|
||||||
|
'mp4',
|
||||||
|
'png',
|
||||||
|
'raw',
|
||||||
|
'rawvideo',
|
||||||
|
'wav',
|
||||||
|
]
|
||||||
|
file_formats += ['.{}'.format(x) for x in file_formats]
|
||||||
|
|
||||||
|
misc_keywords = [
|
||||||
|
'-vf',
|
||||||
|
'a/v',
|
||||||
|
'audio',
|
||||||
|
'dsp',
|
||||||
|
'FFmpeg',
|
||||||
|
'ffmpeg',
|
||||||
|
'ffprobe',
|
||||||
|
'filtering',
|
||||||
|
'filter_complex',
|
||||||
|
'movie',
|
||||||
|
'render',
|
||||||
|
'signals',
|
||||||
|
'sound',
|
||||||
|
'streaming',
|
||||||
|
'streams',
|
||||||
|
'vf',
|
||||||
|
'video',
|
||||||
|
'wrapper',
|
||||||
|
]
|
||||||
|
|
||||||
|
keywords = misc_keywords + file_formats + filter_names
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name = 'ffmpeg-python',
|
name = 'ffmpeg-python',
|
||||||
packages = ['ffmpeg'],
|
packages = ['ffmpeg'],
|
||||||
@ -7,21 +50,7 @@ setup(
|
|||||||
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.tar.gz',
|
download_url = 'https://github.com/kkroening/ffmpeg-python/archive/0.1.1.tar.gz',
|
||||||
keywords = [
|
|
||||||
'a/v',
|
|
||||||
'audio',
|
|
||||||
'dsp',
|
|
||||||
'FFmpeg',
|
|
||||||
'ffmpeg',
|
|
||||||
'ffprobe',
|
|
||||||
'filtering',
|
|
||||||
'render',
|
|
||||||
'signals',
|
|
||||||
'streaming',
|
|
||||||
'streams',
|
|
||||||
'video',
|
|
||||||
'wrapper',
|
|
||||||
],
|
|
||||||
classifiers = [],
|
classifiers = [],
|
||||||
|
keywords = keywords,
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user