From c5481aa22e5a5f1a68dd3453040b3df01c6c8208 Mon Sep 17 00:00:00 2001 From: Dzhoshkun Ismail Shakir Date: Wed, 24 Oct 2018 15:09:30 +0100 Subject: [PATCH] Issue #24: removed edd-* console scripts from setup.py --- src/setup.py | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/src/setup.py b/src/setup.py index c7015090..a7c06667 100644 --- a/src/setup.py +++ b/src/setup.py @@ -481,19 +481,7 @@ def get_outputs(self): 'and encoding video streams in real time' with open('pip/long_description.rst') as f: description = f.read() -console_scripts = [] -for port in ['sdi', 'dvi']: - for colour_space in ['i420']: - # Disabled the BGRA tests of Epiphan DVI2PCIe Duo (currently using OpenCV) - # until issue #115 is resolved - for codec in ['xvid', 'hevc', 'vp9']: - record_script = 'edd-{}-{}-{}'.format( - port, colour_space, codec) - record_script += '=giftgrab.utils:record_epiphan_dvi2pcieduo_{}_{}_{}'.format( - port, colour_space, codec) - console_scripts.append(record_script) -console_scripts = console_scripts +\ - ['test-giftgrab-network-sources-bgra=giftgrab.tests:test_network_sources_bgra', +console_scripts = ['test-giftgrab-network-sources-bgra=giftgrab.tests:test_network_sources_bgra', 'test-giftgrab-network-sources-i420=giftgrab.tests:test_network_sources_i420'] setup( name='GIFT-Grab',