Skip to content
Snippets Groups Projects
Commit fff4dfae authored by Christoph Schmidt's avatar Christoph Schmidt
Browse files

Fixed IDE related errors in version 1.0.0.

parent abb88d3d
Branches
No related tags found
No related merge requests found
...@@ -3,7 +3,6 @@ ...@@ -3,7 +3,6 @@
<component name="NewModuleRootManager"> <component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$"> <content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" /> <sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/src/CaptDeviceControl" isTestSource="false" />
<excludeFolder url="file://$MODULE_DIR$/src/CaptDeviceControl/adcaptdevicecontrol" /> <excludeFolder url="file://$MODULE_DIR$/src/CaptDeviceControl/adcaptdevicecontrol" />
<excludeFolder url="file://$MODULE_DIR$/src/CaptDeviceControl/old" /> <excludeFolder url="file://$MODULE_DIR$/src/CaptDeviceControl/old" />
<excludeFolder url="file://$MODULE_DIR$/.venv" /> <excludeFolder url="file://$MODULE_DIR$/.venv" />
......
...@@ -15,9 +15,9 @@ dependencies = [ ...@@ -15,9 +15,9 @@ dependencies = [
'scipy', 'scipy',
'rich', 'rich',
'pyqtgraph', 'pyqtgraph',
'fswidgets@git+https://gitlab.tugraz.at/flexsensor-public/modules/fswidgets.git@develop', 'fswidgets@git+https://gitlab.tugraz.at/flexsensor-public/modules/fswidgets.git@main',
'confighandler@git+https://gitlab.tugraz.at/flexsensor-public/modules/confighandler.git@develop', 'confighandler@git+https://gitlab.tugraz.at/flexsensor-public/modules/confighandler.git@main',
'cmp@git+https://gitlab.tugraz.at/flexsensor-public/modules/cmp.git@develop' 'cmp@git+https://gitlab.tugraz.at/flexsensor-public/modules/cmp.git@main'
] ]
classifiers = [ classifiers = [
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
......
...@@ -7,11 +7,11 @@ rich ...@@ -7,11 +7,11 @@ rich
pyqtgraph pyqtgraph
# add the git repo # add the git repo
git+https://gitlab.tugraz.at/flexsensor-public/modules/fswidgets.git@develop git+https://gitlab.tugraz.at/flexsensor-public/modules/fswidgets.git@main
#git+https://gitlab.tugraz.at/flexsensor-public/modules/confighandler.git@develop git+https://gitlab.tugraz.at/flexsensor-public/modules/confighandler.git@main
#git+https://gitlab.tugraz.at/flexsensor-public/modules/cmp.git@develop git+https://gitlab.tugraz.at/flexsensor-public/modules/cmp.git@main
# Local installs # Local installs
../tools/confighandler #../tools/confighandler
#../captdevicecontrol #../tools/fswidgets
../tools/cmp #../tools/cmp
\ No newline at end of file \ No newline at end of file
...@@ -4,3 +4,8 @@ Author(s): Christoph Schmidt <christoph.schmidt@tugraz.at> ...@@ -4,3 +4,8 @@ Author(s): Christoph Schmidt <christoph.schmidt@tugraz.at>
Created: 2023-10-19 12:35 Created: 2023-10-19 12:35
Package Version: Package Version:
""" """
import sys
from .CaptDeviceConfig import CaptDeviceConfig as Config
from .controller.BaseAD2CaptDevice import BaseAD2CaptDevice as Controller
from .model.AD2CaptDeviceModel import AD2CaptDeviceModel as Model
from .view.AD2CaptDeviceView import ControlWindow as View
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment