-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Python support on the configurator side
This completes the work started in 0fca9c6.
- Loading branch information
Showing
14 changed files
with
572 additions
and
26 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
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
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,22 @@ | ||
# *** Welcome to the Paunch configuration file! *** | ||
# | ||
# Paunch is a Python launcher built on Jaunch (https://github.com/scijava/jaunch). | ||
# | ||
# One advantage of Paunch over the normal python launcher is that on macOS, | ||
# Paunch starts Python on a separate pthread, and starts the AppKit event loop | ||
# on the main thread, so that GUIs (especially Java-based AWT/Swing GUIs) can | ||
# successfully operate without hanging. | ||
# | ||
# There is a general layer of launcher configuration in the jaunch.toml file. | ||
# The contents below define Paunch's particular launcher behavior and features, | ||
# on top of Paunch's "sensible default" functionality. | ||
# | ||
# See that jaunch.toml file for more details about Jaunch configuration. | ||
|
||
jaunch-version = 1 | ||
|
||
program-name = 'Paunch' | ||
|
||
directives = ['PYTHON'] | ||
|
||
python.version-min = '3.8' |
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
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
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
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 |
---|---|---|
|
@@ -12,6 +12,8 @@ jaunch-version = 1 | |
|
||
program-name = 'ImageJ' | ||
|
||
directives = ['JVM'] | ||
|
||
jvm.root-paths = [ | ||
'${app-dir}', | ||
] | ||
|
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
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
Oops, something went wrong.