remove cfg_editor for now

as it was not functional...

fixes: #4881
related: #4882

Change-Id: Ic8c5ee06fcdd48b8b0562b5b1275296d2b155f06
Reviewed-on: https://forge.frm2.tum.de/review/c/secop/frappy/+/34226
Tested-by: Jenkins Automated Tests <pedersen+jenkins@frm2.tum.de>
Reviewed-by: Jens Krueger <jens.krueger@tum.de>
Reviewed-by: Georg Brandl <g.brandl@fz-juelich.de>
Reviewed-by: Enrico Faulhaber <enrico.faulhaber@frm2.tum.de>
This commit is contained in:
Enrico Faulhaber 2024-07-23 12:16:15 +02:00 committed by Markus Zolliker
parent 318b3ad412
commit 12d7b5dae9
2 changed files with 3 additions and 2 deletions

View File

@ -1,3 +1,2 @@
usr/bin/frappy-gui
usr/bin/frappy-cfg-editor
usr/lib/python3.*/dist-packages/frappy/gui

View File

@ -30,7 +30,9 @@ from setuptools import find_packages, setup
import frappy.version
scripts = glob(path.join('bin', 'frappy-*'))
# cfg-editor is currently not functional
scripts = [script for script in glob(path.join('bin', 'frappy-*'))
if script != 'frappy-cfg-editor']
uidir = path.join(path.dirname(__file__), 'frappy', 'gui', 'ui')
uis = [path.join('gui', 'ui', entry) for entry in listdir(uidir)]