You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: graalpython/lib-graalpython/modules/standalone/__main__.py
-18Lines changed: 0 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -112,7 +112,6 @@
112
112
FILES_LIST_PATH=VFS_PREFIX+"/"+FILES_LIST_NAME
113
113
114
114
CMD_NATIVE_EXECUTABLE="native"
115
-
CMD_JAVA_BINDINGS="java_bindings"
116
115
CMD_JAVA_PYTHON_APP="polyglot_app"
117
116
ATTR_STANDALONE_CMD="command"
118
117
@@ -528,21 +527,6 @@ def main(args):
528
527
default=[],
529
528
)
530
529
531
-
parser_jar=subparsers.add_parser(
532
-
CMD_JAVA_BINDINGS,
533
-
help="Create a Java project from the Python code. This gives the most flexibility, as the project can be used to build both standalone Jar files or native binaries using Maven.",
534
-
)
535
-
parser_jar.add_argument(
536
-
"-m", "--module", help="Python file or module folder to run", required=True
537
-
)
538
-
parser_jar.add_argument("--venv", help="Python venv to bundle")
539
-
parser_jar.add_argument(
540
-
"-o",
541
-
"--output-directory",
542
-
help="The directory to write the Java project to.",
543
-
required=True,
544
-
)
545
-
546
530
parser_app=subparsers.add_parser(
547
531
CMD_JAVA_PYTHON_APP,
548
532
help="Create a skeleton Java project. This gives the most flexibility, as the project can be used to build both standalone Jar files or native binaries using Maven.",
0 commit comments