Skip to content

Commit

Permalink
Make setup.py test work
Browse files Browse the repository at this point in the history
  • Loading branch information
kkroening committed Jun 14, 2017
1 parent d0e226e commit 6960751
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
.cache
.eggs
.tox/
dist/
ffmpeg/tests/sample_data/dummy2.mp4
ffmpeg_python.egg-info/
venv*
.tox/
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
future
pytest
pytest-runner
sphinx
tox
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[aliases]
test=pytest
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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

Expand Down Expand Up @@ -61,11 +60,13 @@ def get_current_commit_hash():
'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',
Expand Down

0 comments on commit 6960751

Please sign in to comment.