diff --git a/.idea/lasercontrol.iml b/.idea/lasercontrol.iml
index b884daa31f1ead53f1509222f549976bb2b2f2df..d1e11dbb8e60eed370550e11314440df6000500d 100644
--- a/.idea/lasercontrol.iml
+++ b/.idea/lasercontrol.iml
@@ -7,7 +7,7 @@
       <excludeFolder url="file://$MODULE_DIR$/.venv310" />
       <excludeFolder url="file://$MODULE_DIR$/.venv37" />
     </content>
-    <orderEntry type="jdk" jdkName="Python 3.10 (lasercontrol)" jdkType="Python SDK" />
+    <orderEntry type="jdk" jdkName="Python 3.7 (lasercontrol)" jdkType="Python SDK" />
     <orderEntry type="sourceFolder" forTests="false" />
   </component>
   <component name="PyNamespacePackagesService">
diff --git a/.idea/misc.xml b/.idea/misc.xml
index 4abf9f846934a367f80c848d78944d6ad6cb828c..db7b81764f2cdf8ba5cf52429b150adc7a91c30d 100644
--- a/.idea/misc.xml
+++ b/.idea/misc.xml
@@ -3,5 +3,5 @@
   <component name="Black">
     <option name="sdkName" value="Python 3.10 (lasercontrol) (2)" />
   </component>
-  <component name="ProjectRootManager" version="2" project-jdk-name="Python 3.10 (lasercontrol)" project-jdk-type="Python SDK" />
+  <component name="ProjectRootManager" version="2" project-jdk-name="Python 3.7 (lasercontrol)" project-jdk-type="Python SDK" />
 </project>
\ No newline at end of file
diff --git a/examples/main.py b/examples/main.py
index bca3fb39f578ec004aa8a57d58e89a14b27388dd..d717d10fb7814b84b4dcf4b9c2f7a8c97914d4ef 100644
--- a/examples/main.py
+++ b/examples/main.py
@@ -3,7 +3,7 @@ import sys
 from PySide6.QtWidgets import QApplication
 from rich.logging import RichHandler
 
-sys.path.append('../src')
+sys.path.append('./src')
 import LaserControl as Laser
 
 if __name__ == "__main__":
diff --git a/pyproject.toml b/pyproject.toml
index 1b941f9ea10f6dceee93aa7d049284b891bdc703..4715aadc7088670932f7b5de959153c5ca37c643 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
 [project]
 name = "lasercontrol"
-version = "1.0.0"
+version = "1.0.1"
 authors = [
   { name="Christoph Schmidt", email="cschmidt.fs@gmail.com" },
 ]
@@ -11,10 +11,10 @@ dependencies = [
     'PySide6',
     'rich',
     'pyyaml',
-    'captdevicecontrol@git+https://gitlab.tugraz.at/flexsensor-public/captdevicecontrol.git@develop',
-    'fswidgets@git+https://gitlab.tugraz.at/flexsensor-public/modules/fswidgets.git@develop',
-    'confighandler@git+https://gitlab.tugraz.at/flexsensor-public/modules/confighandler.git@develop',
-    'cmp@git+https://gitlab.tugraz.at/flexsensor-public/modules/cmp.git@develop'
+    'captdevicecontrol@git+https://github.com/agentsmith29/fs.captdevicecontrol@develop',
+    'fswidgets@git+https://github.com/agentsmith29/fstools.fswidgets@develop',
+    'confighandler@git+https://github.com/agentsmith29/fstools.confighandler@develop',
+    'cmp@git+https://github.com/agentsmith29/fstools.cmp@develop'
 ]
 classifiers = [
     "Programming Language :: Python :: 3",