+
Matlab Hub
+
+
Start new matlab in group:
+
+
+
Groups:
+ {% for group in groups %}
+
{{group}}
+ {% endfor %}
+
Matlabs in group {{group}}:
+ {% for port in ports %}
+
{{port}} stop
+ {% endfor %}
+
+
Matlab Hub by Wim Pomp
+
+
+
\ No newline at end of file
diff --git a/matlabhub/wsgi.py b/matlabhub/wsgi.py
new file mode 100644
index 0000000..323b90a
--- /dev/null
+++ b/matlabhub/wsgi.py
@@ -0,0 +1,3 @@
+import os
+import sys
+from matlabhub.app import app as application
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..1852f2d
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,26 @@
+import setuptools
+
+with open('README.md', 'r') as fh:
+ long_description = fh.read()
+
+setuptools.setup(
+ name='matlabhub',
+ version='2022.7.0',
+ author='Wim Pomp @ Lenstra lab NKI',
+ author_email='w.pomp@nki.nl',
+ description='matlabhub',
+ long_description=long_description,
+ long_description_content_type='text/markdown',
+ url='https://github.com/wimpomp/matlabhub',
+ packages=['matlabhub'],
+ classifiers=[
+ 'Programming Language :: Python :: 3',
+ 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
+ 'Operating System :: OS Independent',
+ ],
+ python_requires='>=3.8',
+ install_requires=['matlab-proxy', 'flask'],
+ entry_points={'console_scripts': ['matlabhub=matlabhub:main'], },
+ package_data={'': ['templates/*', 'config.yml']},
+ include_package_data=True,
+)