mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-02 10:02:48 +08:00
Make setup.py test
work
This commit is contained in:
parent
d0e226e263
commit
6960751de0
4
.gitignore
vendored
4
.gitignore
vendored
@ -1,5 +1,7 @@
|
||||
.cache
|
||||
.eggs
|
||||
.tox/
|
||||
dist/
|
||||
ffmpeg/tests/sample_data/dummy2.mp4
|
||||
ffmpeg_python.egg-info/
|
||||
venv*
|
||||
.tox/
|
||||
|
@ -1,4 +1,5 @@
|
||||
future
|
||||
pytest
|
||||
pytest-runner
|
||||
sphinx
|
||||
tox
|
||||
|
7
setup.py
7
setup.py
@ -1,5 +1,4 @@
|
||||
from distutils.core import setup
|
||||
from ffmpeg._filters import __all__ as filter_names
|
||||
from setuptools import setup
|
||||
from textwrap import dedent
|
||||
import subprocess
|
||||
|
||||
@ -61,11 +60,13 @@ misc_keywords = [
|
||||
'wrapper',
|
||||
]
|
||||
|
||||
keywords = misc_keywords + file_formats + filter_names
|
||||
keywords = misc_keywords + file_formats
|
||||
|
||||
setup(
|
||||
name='ffmpeg-python',
|
||||
packages=['ffmpeg'],
|
||||
setup_requires=['pytest-runner'],
|
||||
tests_require=['pytest'],
|
||||
version='0.1.5',
|
||||
description='Python bindings for FFmpeg - with support for complex filtering',
|
||||
author='Karl Kroening',
|
||||
|
Loading…
x
Reference in New Issue
Block a user