-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #63 from lunarc/develop
Merge for release
- Loading branch information
Showing
53 changed files
with
2,755 additions
and
129 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/usr/bin/python3 | ||
# -*- coding: utf-8 -*- | ||
import re | ||
import sys | ||
from lhpcdt.gfxconfig import main | ||
if __name__ == '__main__': | ||
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) | ||
sys.exit(main()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
#!/bin/sh | ||
GFXLAUNCH_DIR="$( cd "$(dirname "$0")" ; pwd -P )" | ||
python3 $GFXLAUNCH_DIR/gfxlaunch.py "$@" | ||
#!/usr/bin/python3 | ||
# -*- coding: utf-8 -*- | ||
import re | ||
import sys | ||
from lhpcdt.gfxlaunch import main | ||
if __name__ == '__main__': | ||
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) | ||
sys.exit(main()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
#!/bin/sh | ||
GFXLAUNCH_DIR="$( cd "$(dirname "$0")" ; pwd -P )" | ||
python3 $GFXLAUNCH_DIR/gfxmenu.py "$@" | ||
#!/usr/bin/python3 | ||
# -*- coding: utf-8 -*- | ||
import re | ||
import sys | ||
from lhpcdt.gfxmenu import main | ||
if __name__ == '__main__': | ||
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) | ||
sys.exit(main()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
#!/bin/sh | ||
GFXLAUNCH_DIR="$( cd "$(dirname "$0")" ; pwd -P )" | ||
python3 $GFXLAUNCH_DIR/gfxnodes.py "$@" | ||
#!/usr/bin/python3 | ||
# -*- coding: utf-8 -*- | ||
import re | ||
import sys | ||
from lhpcdt.gfxnodes import main | ||
if __name__ == '__main__': | ||
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) | ||
sys.exit(main()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
#!/bin/sh | ||
GFXLAUNCH_DIR="$( cd "$(dirname "$0")" ; pwd -P )" | ||
python3 $GFXLAUNCH_DIR/gfxusage.py "$@" | ||
#!/usr/bin/python3 | ||
# -*- coding: utf-8 -*- | ||
import re | ||
import sys | ||
from lhpcdt.gfxusage import main | ||
if __name__ == '__main__': | ||
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) | ||
sys.exit(main()) |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
[project] | ||
name = "gfxlauncher" | ||
version = "0.9.13" | ||
description = "The GFX Launcher toolkit provide the means for launching graphical applications through SLURM. The toolkit comes with a configurable launcher, graphical job monitor and tools for automatically generating menus and shortcuts for the launcher." | ||
authors = [ | ||
{name = "Jonas Lindemann", email = "jonas.lindemann@lunarc.lu.se"}, | ||
] | ||
dependencies = [ | ||
"qtpy>=2.0.1", | ||
"pyqt5>=5.15.6", | ||
] | ||
requires-python = ">=3.6" | ||
readme = "README.md" | ||
license = {text = "GPL-3.0"} | ||
|
||
[project.scripts] | ||
gfxlaunch = "lhpcdt.gfxlaunch:main" | ||
gfxusage = "lhpcdt.gfxusage:main" | ||
gfxmenu = "lhpcdt.gfxmenu:main" | ||
gfxnodes = "lhpcdt.gfxnodes:main" | ||
gfxconfig = "lhpcdt.gfxconfig:main" | ||
|
||
|
||
[build-system] | ||
requires = ["pdm-pep517>=1.0.0"] | ||
build-backend = "pdm.pep517.api" | ||
|
||
[tool] | ||
[tool.pdm] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__all__ = ['jobs', 'launcher', 'lrms', 'remote', 'settings', 'slurm', 'config', 'desktop', 'lmod', 'lmod_ui', 'splash_win', 'resource_win', 'monitor', 'hostlist', 'integration', 'scripts', 'node_monitor', 'ui_main_window_simplified', 'ui_job_info', 'ui_lmod_query', 'ui_main_window_simplified', 'ui_node_window', 'ui_notebook_job_prop_win', 'ui_resource_specification', 'ui_session_manager', 'toolbar_icons_rc'] | ||
__all__ = ['jobs', 'launcher', 'lrms', 'remote', 'settings', 'slurm', 'config', 'desktop', 'lmod', 'lmod_ui', 'splash_win', 'resource_win', 'monitor', 'hostlist', 'integration', 'scripts', 'node_monitor', 'ui_main_window_simplified', 'ui_job_info', 'ui_lmod_query', 'ui_main_window_simplified', 'ui_node_window', 'ui_notebook_job_prop_win', 'ui_resource_specification', 'ui_session_manager', 'toolbar_icons_rc', 'setup_win', 'basic_config'] |
Oops, something went wrong.