File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11.cache
2+ .eggs
3+ .tox /
24dist /
35ffmpeg /tests /sample_data /dummy2.mp4
6+ ffmpeg_python.egg-info /
47venv *
5- .tox /
Original file line number Diff line number Diff line change 11future
22pytest
3+ pytest-runner
34sphinx
45tox
Original file line number Diff line number Diff line change 1+ [aliases]
2+ test =pytest
Original file line number Diff line number Diff line change 1- from distutils .core import setup
2- from ffmpeg ._filters import __all__ as filter_names
1+ from setuptools import setup
32from textwrap import dedent
43import subprocess
54
@@ -61,11 +60,13 @@ def get_current_commit_hash():
6160 'wrapper' ,
6261]
6362
64- keywords = misc_keywords + file_formats + filter_names
63+ keywords = misc_keywords + file_formats
6564
6665setup (
6766 name = 'ffmpeg-python' ,
6867 packages = ['ffmpeg' ],
68+ setup_requires = ['pytest-runner' ],
69+ tests_require = ['pytest' ],
6970 version = '0.1.5' ,
7071 description = 'Python bindings for FFmpeg - with support for complex filtering' ,
7172 author = 'Karl Kroening' ,
You can’t perform that action at this time.
0 commit comments