Skip to content

Commit

Permalink
Issue #24: removed edd-* console scripts from setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
dzhoshkun committed Oct 24, 2018
1 parent 73b6a94 commit c5481aa
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions src/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit c5481aa

Please sign in to comment.