pycompiler-ark 1.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pycompiler_ark-1.1.0/.gitignore +184 -0
- pycompiler_ark-1.1.0/LICENSE +201 -0
- pycompiler_ark-1.1.0/PKG-INFO +224 -0
- pycompiler_ark-1.1.0/README.md +189 -0
- pycompiler_ark-1.1.0/ark.yml +64 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Core/AdvancedConfigEditor.py +141 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Core/Auto_Command_Builder/__init__.py +45 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Core/Auto_Command_Builder/auto_build.py +876 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Core/Compiler/__init__.py +82 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Core/Compiler/engine_runner.py +495 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Core/Compiler/utils.py +526 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Core/Configs/__init__.py +675 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Core/Globals.py +74 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Core/Locking/__init__.py +398 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Core/SysDependencyManager.py +584 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Core/Venv_Manager/Manager.py +2086 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Core/Venv_Manager/__init__.py +9 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Core/WorkSpaceManager/SetupWorkspace.py +65 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Core/WorkSpaceManager/WorkspaceManipulation.py +139 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Core/WorkSpaceManager/__init__.py +28 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Core/__init__.py +73 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Core/allversion.py +234 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Core/compatibility.py +459 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Core/deps_analyser/__init__.py +47 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Core/deps_analyser/analyser.py +899 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Core/engine/ConfigManager.py +206 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Core/engine/__init__.py +92 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Core/engine/base.py +701 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Core/engine/build_context.py +41 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Core/engine/registry.py +580 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Core/engine/validator.py +232 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Core/process_killer.py +374 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Core/process_security.py +104 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Loaders/EngineLoader/loader.py +167 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Plugins/Cleaner/__init__.py +246 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Plugins/Cleaner/languages/af.json +11 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Plugins/Cleaner/languages/de.json +11 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Plugins/Cleaner/languages/en.json +11 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Plugins/Cleaner/languages/es.json +11 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Plugins/Cleaner/languages/fr.json +11 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Plugins/Cleaner/languages/it.json +11 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Plugins/Cleaner/languages/ja.json +11 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Plugins/Cleaner/languages/ko.json +11 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Plugins/Cleaner/languages/pt-BR.json +11 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Plugins/Cleaner/languages/ru.json +11 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Plugins/Cleaner/languages/zh-CN.json +11 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Plugins/OutputCleaner/__init__.py +143 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Plugins_SDK/BcPluginContext/Context.py +330 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Plugins_SDK/BcPluginContext/__init__.py +47 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Plugins_SDK/GeneralContext/Dialog.py +242 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Plugins_SDK/GeneralContext/__init__.py +47 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Plugins_SDK/GeneralContext/i18n.py +244 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Plugins_SDK/__init__.py +41 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Services/AdvancedAuth.py +55 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Ui/Cli/__init__.py +6 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Ui/Cli/app.py +594 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Ui/Cli/discovery.py +311 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Ui/Cli/entrypoint.py +5 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Ui/Cli/helpers.py +804 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Ui/Cli/icons.py +38 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Ui/Cli/interactive.py +168 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Ui/Cli/launchers.py +156 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Ui/Cli/output.py +101 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Ui/Cli/runtime.py +293 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Ui/Forms/classic_main_window.ui +1025 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Ui/Forms/ide_main_window.ui +608 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Ui/Gui/Compilation/compiler.py +464 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Ui/Gui/Compilation/helpers.py +178 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Ui/Gui/Compilation/mainprocess.py +485 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Ui/Gui/Dialogs/AdvancedAuthUI.py +45 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Ui/Gui/Dialogs/AdvancedConfigEditor.py +504 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Ui/Gui/Dialogs/BcaslDialog.py +1253 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Ui/Gui/Dialogs/CompilerDialog.py +1109 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Ui/Gui/Dialogs/DepsAnalyserUI.py +446 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Ui/Gui/Dialogs/InitWorkspaceDialog.py +180 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Ui/Gui/Dialogs/LockDialog.py +294 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Ui/Gui/Dialogs/SysDependencyUI.py +792 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Ui/Gui/Dialogs/VenvDialog.py +448 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Ui/Gui/Dialogs/WorkspaceDialog.py +400 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Ui/Gui/Dialogs/__init__.py +8 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Ui/Gui/Gui.py +613 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Ui/Gui/IdeLikeGui/__init__.py +12 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Ui/Gui/IdeLikeGui/connections.py +831 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Ui/Gui/UiConnection.py +965 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Ui/Gui/UiFeatures.py +712 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Ui/Gui/WidgetsCreator.py +484 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Ui/Gui/WorkspaceManipulation.py +268 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Ui/Gui/__init__.py +8 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Ui/PreferencesManager.py +311 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Ui/__init__.py +5 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Ui/forms.py +10 -0
- pycompiler_ark-1.1.0/pycompiler_ark/Ui/i18n.py +1319 -0
- pycompiler_ark-1.1.0/pycompiler_ark/__init__.py +0 -0
- pycompiler_ark-1.1.0/pycompiler_ark/__main__.py +25 -0
- pycompiler_ark-1.1.0/pycompiler_ark/bcasl/Base.py +302 -0
- pycompiler_ark-1.1.0/pycompiler_ark/bcasl/Loader.py +581 -0
- pycompiler_ark-1.1.0/pycompiler_ark/bcasl/__init__.py +108 -0
- pycompiler_ark-1.1.0/pycompiler_ark/bcasl/executor.py +875 -0
- pycompiler_ark-1.1.0/pycompiler_ark/bcasl/tagging.py +156 -0
- pycompiler_ark-1.1.0/pycompiler_ark/bcasl/validator.py +195 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/ManagerMapping.yml +7 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/activity.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/airplay.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/alert-circle.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/alert-octagon.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/alert-triangle.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/align-center.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/align-justify.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/align-left.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/align-right.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/anchor.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/aperture.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/archive.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/arrow-down-circle.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/arrow-down-left.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/arrow-down-right.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/arrow-down.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/arrow-left-circle.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/arrow-left.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/arrow-right-circle.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/arrow-right.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/arrow-up-circle.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/arrow-up-left.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/arrow-up-right.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/arrow-up.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/at-sign.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/award.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/bar-chart-2.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/bar-chart.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/battery-charging.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/battery.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/bell-off.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/bell.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/bluetooth.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/bold.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/book-open.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/book.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/bookmark.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/box.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/briefcase.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/calendar.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/camera-off.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/camera.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/cast.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/check-circle.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/check-square.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/check.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/chevron-down.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/chevron-left.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/chevron-right.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/chevron-up.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/chevrons-down.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/chevrons-left.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/chevrons-right.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/chevrons-up.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/chrome.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/circle.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/clipboard.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/clock.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/cloud-drizzle.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/cloud-lightning.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/cloud-off.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/cloud-rain.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/cloud-snow.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/cloud.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/code.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/codepen.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/codesandbox.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/coffee.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/columns.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/command.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/compass.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/copy.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/corner-down-left.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/corner-down-right.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/corner-left-down.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/corner-left-up.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/corner-right-down.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/corner-right-up.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/corner-up-left.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/corner-up-right.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/cpu.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/credit-card.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/crop.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/crosshair.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/database.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/delete.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/disc.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/divide-circle.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/divide-square.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/divide.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/dollar-sign.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/download-cloud.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/download.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/dribbble.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/droplet.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/edit-2.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/edit-3.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/edit.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/external-link.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/eye-off.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/eye.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/facebook.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/fast-forward.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/feather.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/figma.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/file-minus.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/file-plus.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/file-text.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/file.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/film.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/filter.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/flag.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/folder-minus.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/folder-plus.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/folder.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/framer.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/frown.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/gift.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/git-branch.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/git-commit.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/git-merge.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/git-pull-request.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/github.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/gitlab.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/globe.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/grid.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/hard-drive.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/hash.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/headphones.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/heart.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/help-circle.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/hexagon.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/home.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/image.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/inbox.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/info.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/instagram.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/italic.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/key.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/layers.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/layout.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/life-buoy.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/link-2.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/link.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/linkedin.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/list.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/loader.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/lock.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/log-in.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/log-out.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/mail.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/map-pin.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/map.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/maximize-2.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/maximize.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/meh.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/menu.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/message-circle.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/message-square.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/mic-off.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/mic.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/minimize-2.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/minimize.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/minus-circle.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/minus-square.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/minus.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/monitor.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/moon.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/more-horizontal.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/more-vertical.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/mouse-pointer.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/move.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/music.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/navigation-2.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/navigation.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/octagon.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/package.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/paperclip.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/pause-circle.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/pause.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/pen-tool.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/percent.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/phone-call.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/phone-forwarded.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/phone-incoming.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/phone-missed.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/phone-off.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/phone-outgoing.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/phone.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/pie-chart.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/play-circle.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/play.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/plus-circle.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/plus-square.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/plus.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/pocket.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/power.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/printer.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/radio.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/refresh-ccw.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/refresh-cw.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/repeat.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/rewind.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/rotate-ccw.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/rotate-cw.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/rss.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/save.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/scissors.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/search.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/send.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/server.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/settings.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/share-2.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/share.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/shield-off.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/shield.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/shopping-bag.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/shopping-cart.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/shuffle.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/sidebar.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/skip-back.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/skip-forward.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/slack.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/slash.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/sliders.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/smartphone.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/smile.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/speaker.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/square.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/star.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/stop-circle.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/sun.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/sunrise.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/sunset.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/table.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/tablet.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/tag.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/target.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/terminal.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/thermometer.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/thumbs-down.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/thumbs-up.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/toggle-left.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/toggle-right.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/tool.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/trash-2.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/trash.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/trello.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/trending-down.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/trending-up.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/triangle.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/truck.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/tv.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/twitch.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/twitter.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/type.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/umbrella.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/underline.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/unlock.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/upload-cloud.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/upload.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/user-check.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/user-minus.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/user-plus.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/user-x.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/user.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/users.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/video-off.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/video.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/voicemail.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/volume-1.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/volume-2.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/volume-x.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/volume.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/watch.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/wifi-off.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/wifi.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/wind.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/x-circle.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/x-octagon.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/x-square.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/x.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/youtube.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/zap-off.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/zap.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/zoom-in.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/icons/zoom-out.svg +1 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/schemas/mapping.schema.json +136 -0
- pycompiler_ark-1.1.0/pycompiler_ark/data/stblib.yml +54 -0
- pycompiler_ark-1.1.0/pycompiler_ark/engine_sdk/Sys_Deps.py +21 -0
- pycompiler_ark-1.1.0/pycompiler_ark/engine_sdk/__init__.py +313 -0
- pycompiler_ark-1.1.0/pycompiler_ark/engine_sdk/auto_build_command.py +10 -0
- pycompiler_ark-1.1.0/pycompiler_ark/engine_sdk/base.py +21 -0
- pycompiler_ark-1.1.0/pycompiler_ark/engine_sdk/i18n.py +35 -0
- pycompiler_ark-1.1.0/pycompiler_ark/engine_sdk/ui_helpers.py +74 -0
- pycompiler_ark-1.1.0/pycompiler_ark/engine_sdk/utils.py +660 -0
- pycompiler_ark-1.1.0/pycompiler_ark/engines/cx_freeze/__init__.py +338 -0
- pycompiler_ark-1.1.0/pycompiler_ark/engines/cx_freeze/languages/de.json +17 -0
- pycompiler_ark-1.1.0/pycompiler_ark/engines/cx_freeze/languages/en.json +17 -0
- pycompiler_ark-1.1.0/pycompiler_ark/engines/cx_freeze/languages/es.json +17 -0
- pycompiler_ark-1.1.0/pycompiler_ark/engines/cx_freeze/languages/fr.json +17 -0
- pycompiler_ark-1.1.0/pycompiler_ark/engines/cx_freeze/languages/ja.json +17 -0
- pycompiler_ark-1.1.0/pycompiler_ark/engines/cx_freeze/languages/pt-BR.json +17 -0
- pycompiler_ark-1.1.0/pycompiler_ark/engines/cx_freeze/languages/zh-CN.json +17 -0
- pycompiler_ark-1.1.0/pycompiler_ark/engines/cx_freeze/mapping.json +75 -0
- pycompiler_ark-1.1.0/pycompiler_ark/engines/nuitka/__init__.py +340 -0
- pycompiler_ark-1.1.0/pycompiler_ark/engines/nuitka/languages/af.json +20 -0
- pycompiler_ark-1.1.0/pycompiler_ark/engines/nuitka/languages/de.json +20 -0
- pycompiler_ark-1.1.0/pycompiler_ark/engines/nuitka/languages/en.json +20 -0
- pycompiler_ark-1.1.0/pycompiler_ark/engines/nuitka/languages/es.json +20 -0
- pycompiler_ark-1.1.0/pycompiler_ark/engines/nuitka/languages/fr.json +20 -0
- pycompiler_ark-1.1.0/pycompiler_ark/engines/nuitka/languages/it.json +20 -0
- pycompiler_ark-1.1.0/pycompiler_ark/engines/nuitka/languages/ja.json +20 -0
- pycompiler_ark-1.1.0/pycompiler_ark/engines/nuitka/languages/ko.json +20 -0
- pycompiler_ark-1.1.0/pycompiler_ark/engines/nuitka/languages/pt-BR.json +20 -0
- pycompiler_ark-1.1.0/pycompiler_ark/engines/nuitka/languages/ru.json +20 -0
- pycompiler_ark-1.1.0/pycompiler_ark/engines/nuitka/languages/zh-CN.json +20 -0
- pycompiler_ark-1.1.0/pycompiler_ark/engines/nuitka/mapping.json +87 -0
- pycompiler_ark-1.1.0/pycompiler_ark/engines/pyinstaller/__init__.py +300 -0
- pycompiler_ark-1.1.0/pycompiler_ark/engines/pyinstaller/languages/af.json +23 -0
- pycompiler_ark-1.1.0/pycompiler_ark/engines/pyinstaller/languages/de.json +28 -0
- pycompiler_ark-1.1.0/pycompiler_ark/engines/pyinstaller/languages/en.json +28 -0
- pycompiler_ark-1.1.0/pycompiler_ark/engines/pyinstaller/languages/es.json +28 -0
- pycompiler_ark-1.1.0/pycompiler_ark/engines/pyinstaller/languages/fr.json +28 -0
- pycompiler_ark-1.1.0/pycompiler_ark/engines/pyinstaller/languages/it.json +23 -0
- pycompiler_ark-1.1.0/pycompiler_ark/engines/pyinstaller/languages/ja.json +28 -0
- pycompiler_ark-1.1.0/pycompiler_ark/engines/pyinstaller/languages/ko.json +23 -0
- pycompiler_ark-1.1.0/pycompiler_ark/engines/pyinstaller/languages/pt-BR.json +28 -0
- pycompiler_ark-1.1.0/pycompiler_ark/engines/pyinstaller/languages/ru.json +23 -0
- pycompiler_ark-1.1.0/pycompiler_ark/engines/pyinstaller/languages/zh-CN.json +28 -0
- pycompiler_ark-1.1.0/pycompiler_ark/engines/pyinstaller/mapping.json +76 -0
- pycompiler_ark-1.1.0/pycompiler_ark/images/1splash.png +0 -0
- pycompiler_ark-1.1.0/pycompiler_ark/images/logo.png +0 -0
- pycompiler_ark-1.1.0/pycompiler_ark/images/logo2.png +0 -0
- pycompiler_ark-1.1.0/pycompiler_ark/images/splash.png +0 -0
- pycompiler_ark-1.1.0/pycompiler_ark/languages/af.json +87 -0
- pycompiler_ark-1.1.0/pycompiler_ark/languages/de.json +87 -0
- pycompiler_ark-1.1.0/pycompiler_ark/languages/en.json +87 -0
- pycompiler_ark-1.1.0/pycompiler_ark/languages/es.json +87 -0
- pycompiler_ark-1.1.0/pycompiler_ark/languages/fr.json +95 -0
- pycompiler_ark-1.1.0/pycompiler_ark/languages/it.json +87 -0
- pycompiler_ark-1.1.0/pycompiler_ark/languages/ja.json +87 -0
- pycompiler_ark-1.1.0/pycompiler_ark/languages/ko.json +87 -0
- pycompiler_ark-1.1.0/pycompiler_ark/languages/pt-BR.json +87 -0
- pycompiler_ark-1.1.0/pycompiler_ark/languages/ru.json +87 -0
- pycompiler_ark-1.1.0/pycompiler_ark/languages/zh-CN.json +87 -0
- pycompiler_ark-1.1.0/pycompiler_ark/themes/arctic_light.qss +486 -0
- pycompiler_ark-1.1.0/pycompiler_ark/themes/dark.qss +474 -0
- pycompiler_ark-1.1.0/pycompiler_ark/themes/forest.qss +474 -0
- pycompiler_ark-1.1.0/pycompiler_ark/themes/light.qss +486 -0
- pycompiler_ark-1.1.0/pycompiler_ark/themes/mint_light.qss +486 -0
- pycompiler_ark-1.1.0/pycompiler_ark/themes/rose_light.qss +486 -0
- pycompiler_ark-1.1.0/pycompiler_ark/themes/sand.qss +486 -0
- pycompiler_ark-1.1.0/pycompiler_ark/themes/slate.qss +474 -0
- pycompiler_ark-1.1.0/pyproject.toml +60 -0
- pycompiler_ark-1.1.0/requirements.txt +34 -0
|
@@ -0,0 +1,184 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*$py.class
|
|
5
|
+
*.tar.gz
|
|
6
|
+
# C extensions
|
|
7
|
+
*.so
|
|
8
|
+
.codex
|
|
9
|
+
# Swap/backup files
|
|
10
|
+
*.swp
|
|
11
|
+
*.bak
|
|
12
|
+
.codex
|
|
13
|
+
# Distribution / packaging
|
|
14
|
+
.Python
|
|
15
|
+
build/
|
|
16
|
+
dist/
|
|
17
|
+
*.egg-info/
|
|
18
|
+
.eggs/
|
|
19
|
+
*.egg
|
|
20
|
+
MANIFEST
|
|
21
|
+
.installed.cfg
|
|
22
|
+
sdist/
|
|
23
|
+
develop-eggs/
|
|
24
|
+
downloads/
|
|
25
|
+
eggs/
|
|
26
|
+
lib/
|
|
27
|
+
lib64/
|
|
28
|
+
parts/
|
|
29
|
+
var/
|
|
30
|
+
wheels/
|
|
31
|
+
pip-wheel-metadata/
|
|
32
|
+
share/python-wheels/
|
|
33
|
+
|
|
34
|
+
# PyInstaller
|
|
35
|
+
*.manifest
|
|
36
|
+
*.spec
|
|
37
|
+
|
|
38
|
+
# Installer logs
|
|
39
|
+
pip-log.txt
|
|
40
|
+
pip-delete-this-directory.txt
|
|
41
|
+
|
|
42
|
+
# Unit test / coverage reports
|
|
43
|
+
htmlcov/
|
|
44
|
+
.tox/
|
|
45
|
+
.nox/
|
|
46
|
+
.coverage
|
|
47
|
+
.coverage.*
|
|
48
|
+
.cache
|
|
49
|
+
nosetests.xml
|
|
50
|
+
coverage.xml
|
|
51
|
+
*.cover
|
|
52
|
+
*.py,cover
|
|
53
|
+
.hypothesis/
|
|
54
|
+
.pytest_cache/
|
|
55
|
+
|
|
56
|
+
# Translations
|
|
57
|
+
*.mo
|
|
58
|
+
*.pot
|
|
59
|
+
|
|
60
|
+
# Django
|
|
61
|
+
*.log
|
|
62
|
+
local_settings.py
|
|
63
|
+
db.sqlite3
|
|
64
|
+
db.sqlite3-journal
|
|
65
|
+
.codex
|
|
66
|
+
# Flask
|
|
67
|
+
instance/
|
|
68
|
+
.webassets-cache
|
|
69
|
+
|
|
70
|
+
# Scrapy
|
|
71
|
+
.scrapy
|
|
72
|
+
|
|
73
|
+
# Sphinx documentation
|
|
74
|
+
docs/_build/
|
|
75
|
+
|
|
76
|
+
# PyBuilder
|
|
77
|
+
target/
|
|
78
|
+
|
|
79
|
+
# Jupyter Notebook
|
|
80
|
+
.ipynb_checkpoints
|
|
81
|
+
|
|
82
|
+
# IPython
|
|
83
|
+
profile_default/
|
|
84
|
+
ipython_config.py
|
|
85
|
+
bcasl.yml
|
|
86
|
+
# pyenv
|
|
87
|
+
.python-version
|
|
88
|
+
|
|
89
|
+
# pipenv
|
|
90
|
+
#Pipfile.lock
|
|
91
|
+
|
|
92
|
+
# PEP 582
|
|
93
|
+
__pypackages__/
|
|
94
|
+
|
|
95
|
+
# Celery
|
|
96
|
+
celerybeat-schedule
|
|
97
|
+
celerybeat.pid
|
|
98
|
+
|
|
99
|
+
# SageMath
|
|
100
|
+
*.sage.py
|
|
101
|
+
|
|
102
|
+
# Environments
|
|
103
|
+
.env
|
|
104
|
+
.venv
|
|
105
|
+
env/
|
|
106
|
+
venv/
|
|
107
|
+
ENV/
|
|
108
|
+
env.bak/
|
|
109
|
+
venv.bak/
|
|
110
|
+
|
|
111
|
+
# mypy
|
|
112
|
+
.mypy_cache/
|
|
113
|
+
.dmypy.json
|
|
114
|
+
dmypy.json
|
|
115
|
+
|
|
116
|
+
# Pyre
|
|
117
|
+
.pyre/
|
|
118
|
+
|
|
119
|
+
# pytype
|
|
120
|
+
.pytype/
|
|
121
|
+
|
|
122
|
+
# Cython debug symbols
|
|
123
|
+
cython_debug/
|
|
124
|
+
|
|
125
|
+
# IDEs / Editors
|
|
126
|
+
.directory
|
|
127
|
+
.idea/
|
|
128
|
+
.vscode/
|
|
129
|
+
.spyderproject
|
|
130
|
+
.spyproject
|
|
131
|
+
.ropeproject
|
|
132
|
+
.qtcreator/
|
|
133
|
+
|
|
134
|
+
# OS files
|
|
135
|
+
.DS_Store
|
|
136
|
+
Thumbs.db
|
|
137
|
+
ehthumbs.db
|
|
138
|
+
Desktop.ini
|
|
139
|
+
|
|
140
|
+
# mkdocs
|
|
141
|
+
/site
|
|
142
|
+
|
|
143
|
+
# Security files
|
|
144
|
+
*.p12
|
|
145
|
+
*.pfx
|
|
146
|
+
*.key
|
|
147
|
+
*.pem
|
|
148
|
+
certificates/
|
|
149
|
+
|
|
150
|
+
# PyCompiler ARK specific
|
|
151
|
+
experimental_file/
|
|
152
|
+
cloc
|
|
153
|
+
error_logs/
|
|
154
|
+
logs/
|
|
155
|
+
crash_reports/
|
|
156
|
+
work_notes.txt
|
|
157
|
+
output/
|
|
158
|
+
compiled/
|
|
159
|
+
artifacts/
|
|
160
|
+
*.exe
|
|
161
|
+
*.app
|
|
162
|
+
*.dmg
|
|
163
|
+
*.pkg
|
|
164
|
+
*.deb
|
|
165
|
+
*.rpm
|
|
166
|
+
config.json
|
|
167
|
+
config.yaml
|
|
168
|
+
config.toml
|
|
169
|
+
user_preferences.json
|
|
170
|
+
|
|
171
|
+
clean_venv_duplicates.py
|
|
172
|
+
force_clean_venv_files.py
|
|
173
|
+
Licence_Injector.py
|
|
174
|
+
sys
|
|
175
|
+
.blackbox/
|
|
176
|
+
.blackboxrules
|
|
177
|
+
.kombai
|
|
178
|
+
.pref/
|
|
179
|
+
.qodo
|
|
180
|
+
|
|
181
|
+
# Temporary files
|
|
182
|
+
temp/
|
|
183
|
+
tmp/
|
|
184
|
+
*.tmp
|
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
« License » shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
And distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
« Licensor » shall mean the copyright owner or entity authorized by
|
|
13
|
+
The copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
« Legal Entity » shall mean the union of the acting entity and all
|
|
16
|
+
Other entities that control, are controlled by, or are under common
|
|
17
|
+
Control with that entity. For the purposes of this definition,
|
|
18
|
+
« control » means (i) the power, direct or indirect, to cause the
|
|
19
|
+
Direction or management of such entity, whether by contract or
|
|
20
|
+
Otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
Outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
« You » (or « Your ») shall mean an individual or Legal Entity
|
|
24
|
+
Exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
« Source » form shall mean the preferred form for making modifications,
|
|
27
|
+
Including but not limited to software source code, documentation
|
|
28
|
+
Source, and configuration files.
|
|
29
|
+
|
|
30
|
+
« Object » form shall mean any form resulting from mechanical
|
|
31
|
+
Transformation or translation of a Source form, including but
|
|
32
|
+
Not limited to compiled object code, generated documentation,
|
|
33
|
+
And conversions to other media types.
|
|
34
|
+
|
|
35
|
+
« Work » shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
Copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
« Derivative Works » shall mean any work, whether in Source or Object
|
|
41
|
+
Form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
Editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
Represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
Of this License, Derivative Works shall not include works that remain
|
|
45
|
+
Separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
The Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
« Contribution » shall mean any work of authorship, including
|
|
49
|
+
The original version of the Work and any modifications or additions
|
|
50
|
+
To that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
Submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
Or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
The copyright owner. For the purposes of this definition, « submitted »
|
|
54
|
+
Means any form of electronic, verbal or written communication sent
|
|
55
|
+
To the Licensor or its representatives, including but not limited to
|
|
56
|
+
Communication on electronic mailing lists, source code control systems,
|
|
57
|
+
And issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
Excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
Designated in writing by the copyright owner as « Not a Contribution. »
|
|
61
|
+
|
|
62
|
+
« Contributor » shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
On behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
Subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
This License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
Worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
Copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
Publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
This License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
Worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
Use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
Where such license applies only to those patent claims licensable
|
|
79
|
+
By such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
With the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
Institute patent litigation against any entity (including a
|
|
83
|
+
Cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
Or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
Or contributory patent infringement, then any patent licenses
|
|
86
|
+
Granted to You under this License for that Work shall terminate
|
|
87
|
+
As of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
Modifications, and in Source or Object form, provided that You
|
|
92
|
+
Meet the following conditions :
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License ; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
Stating that You changed the files ; and
|
|
99
|
+
|
|
100
|
+
© You must retain, in the Source form of any Derivative Works
|
|
101
|
+
That You distribute, all copyright, patent, trademark, and
|
|
102
|
+
Attribution notices from the Source form of the Work,
|
|
103
|
+
Excluding those notices that do not pertain to any part of
|
|
104
|
+
The Derivative Works ; and
|
|
105
|
+
|
|
106
|
+
(c) If the Work includes a « NOTICE » text file as part of its
|
|
107
|
+
Distribution, then any Derivative Works that You distribute must
|
|
108
|
+
Include a readable copy of the attribution notices contained
|
|
109
|
+
Within such NOTICE file, excluding those notices that do not
|
|
110
|
+
Pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
Of the following places : within a NOTICE text file distributed
|
|
112
|
+
As part of the Derivative Works ; within the Source form or
|
|
113
|
+
Documentation, if provided along with the Derivative Works ; or,
|
|
114
|
+
Within a display generated by the Derivative Works, if and
|
|
115
|
+
Wherever such third-party notices normally appear. The contents
|
|
116
|
+
Of the NOTICE file are for informational purposes only and
|
|
117
|
+
Do not modify the License. You may add Your own attribution
|
|
118
|
+
Notices within Derivative Works that You distribute, alongside
|
|
119
|
+
Or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
That such additional attribution notices cannot be construed
|
|
121
|
+
As modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
May provide additional or different license terms and conditions
|
|
125
|
+
For use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
For any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
Reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
The conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
Any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
By You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
This License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
The terms of any separate license agreement you may have executed
|
|
136
|
+
With Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
Names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
Except as required for reasonable and customary use in describing the
|
|
141
|
+
Origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
Agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an « AS IS » BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
Implied, including, without limitation, any warranties or conditions
|
|
148
|
+
Of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
Appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
Risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
Whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
Unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
Negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
Liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
Incidental, or consequential damages of any character arising as a
|
|
159
|
+
Result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
Work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
Other commercial damages or losses), even if such Contributor
|
|
163
|
+
Has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
The Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
And charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
Or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
On Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
Of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
Defend, and hold each Contributor harmless for any liability
|
|
173
|
+
Incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
Of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX : How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
Boilerplate notice, with the fields enclosed by brackets « [] »
|
|
182
|
+
Replaced with your own identifying information. (Don’t include
|
|
183
|
+
The brackets !) The text should be enclosed in the appropriate
|
|
184
|
+
Comment syntax for the file format. We also recommend that a
|
|
185
|
+
File or class name and description of purpose be included on the
|
|
186
|
+
Same « printed page » as the copyright notice for easier
|
|
187
|
+
Identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the « License ») ;
|
|
192
|
+
You may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
Distributed under the License is distributed on an « AS IS » BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
Limitations under the License.
|
|
@@ -0,0 +1,224 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pycompiler-ark
|
|
3
|
+
Version: 1.1.0
|
|
4
|
+
Summary: Python Build Studio with multi-engine support and BCASL pre-compile pipeline.
|
|
5
|
+
Project-URL: Homepage, https://github.com/raidos23/PyCompiler_ARK
|
|
6
|
+
Author-email: Ague Samuel Amen <ague.samuel27@gmail.com>
|
|
7
|
+
License-Expression: Apache-2.0
|
|
8
|
+
License-File: LICENSE
|
|
9
|
+
Keywords: build,cli,compiler,cx_freeze,gui,nuitka,pyinstaller
|
|
10
|
+
Classifier: Development Status :: 4 - Beta
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
13
|
+
Classifier: Operating System :: OS Independent
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
18
|
+
Classifier: Topic :: Software Development :: Build Tools
|
|
19
|
+
Requires-Python: >=3.11
|
|
20
|
+
Requires-Dist: click
|
|
21
|
+
Requires-Dist: colorama
|
|
22
|
+
Requires-Dist: future
|
|
23
|
+
Requires-Dist: jsonschema
|
|
24
|
+
Requires-Dist: psutil
|
|
25
|
+
Requires-Dist: pyside6<6.11,>=6.8; python_version >= '3.13'
|
|
26
|
+
Requires-Dist: pyside6<6.5,>=6.4; python_version >= '3.11' and python_version < '3.12'
|
|
27
|
+
Requires-Dist: pyside6<6.8,>=6.6; python_version >= '3.12' and python_version < '3.13'
|
|
28
|
+
Requires-Dist: pyyaml<7.0.0,>=5.4.1
|
|
29
|
+
Requires-Dist: rich
|
|
30
|
+
Requires-Dist: shiboken6<6.11,>=6.8; python_version >= '3.13'
|
|
31
|
+
Requires-Dist: shiboken6<6.5,>=6.4; python_version >= '3.11' and python_version < '3.12'
|
|
32
|
+
Requires-Dist: shiboken6<6.8,>=6.6; python_version >= '3.12' and python_version < '3.13'
|
|
33
|
+
Requires-Dist: tomli<3.0.0,>=2.0.1; python_version < '3.11'
|
|
34
|
+
Description-Content-Type: text/markdown
|
|
35
|
+
|
|
36
|
+
<p align="center">
|
|
37
|
+
<img src="./images/logo2.png" alt="PyCompiler ARK logo" width="100%"/>
|
|
38
|
+
</p>
|
|
39
|
+
|
|
40
|
+
# **PyCompiler ARK**
|
|
41
|
+
|
|
42
|
+
A Python project build workshop with a Qt GUI, a headless-friendly CLI, a pre-compilation pipeline, and a multi-engine system.
|
|
43
|
+
|
|
44
|
+
---
|
|
45
|
+
|
|
46
|
+
## Why this app?
|
|
47
|
+
|
|
48
|
+
Build Python apps with a predictable workflow, a configurable pre-compile pipeline, and the freedom to choose your build engine.
|
|
49
|
+
|
|
50
|
+
## Core capabilities
|
|
51
|
+
|
|
52
|
+
- **BCASL pre-compile pipeline**: validation, preparation, transformation before the build, with safety controls.
|
|
53
|
+
- **Unified EngineRunner architecture**: a single source of truth for both CLI and GUI compilation, ensuring identical build results across all interfaces.
|
|
54
|
+
- **BuildContext-driven builds**: engines receive a normalized project context, abstracting away the source of configuration (YAML vs. Lock files).
|
|
55
|
+
- **Multi-engine support**: switch between PyInstaller, Nuitka, and cx_Freeze seamlessly.
|
|
56
|
+
- **Extensible SDKs**: create new engines and BCASL plugins using simplified, consolidated APIs.
|
|
57
|
+
- **Zero-Config auto-mapping for 80+ libraries**: automatic import detection covers major AI, modern web, data science, and automation stacks, with engine-specific arguments applied without manual tuning.
|
|
58
|
+
- **Simplified build inclusions**: `build.include` forces package bundling and ARK translates it automatically per engine.
|
|
59
|
+
- **Workspace-first UI**: filter files, manage exclusions, and follow progress and logs in one place.
|
|
60
|
+
- **Venv-aware execution**: engines can use the project virtual environment automatically.
|
|
61
|
+
- **Theme-aware dynamic UI**: 100% dynamic integration using QPalette and themed SVGs.
|
|
62
|
+
|
|
63
|
+
---
|
|
64
|
+
|
|
65
|
+
## Quick Start
|
|
66
|
+
|
|
67
|
+
### Install
|
|
68
|
+
|
|
69
|
+
```bash
|
|
70
|
+
git clone https://github.com/raidos23/PyCompiler_ARK.git
|
|
71
|
+
cd PyCompiler_ARK
|
|
72
|
+
python -m venv .venv
|
|
73
|
+
source .venv/bin/activate # Linux/macOS
|
|
74
|
+
# or
|
|
75
|
+
.venv\Scripts\activate # Windows
|
|
76
|
+
pip install -r requirements.txt
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
### Launch
|
|
80
|
+
|
|
81
|
+
```bash
|
|
82
|
+
python pycompiler_ark.py
|
|
83
|
+
# or
|
|
84
|
+
python -m pycompiler_ark
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
*Note: The application features a centered and auto-scaled splash screen for a professional startup experience.*
|
|
88
|
+
|
|
89
|
+
---
|
|
90
|
+
|
|
91
|
+
## CLI Demo
|
|
92
|
+
|
|
93
|
+
Experience the PyCompiler ARK workflow in action:
|
|
94
|
+
|
|
95
|
+

|
|
96
|
+
|
|
97
|
+
---
|
|
98
|
+
|
|
99
|
+
## How it works
|
|
100
|
+
|
|
101
|
+
1. Select a workspace.
|
|
102
|
+
2. Add or filter files to compile.
|
|
103
|
+
3. Configure an engine (PyInstaller, Nuitka, cx_Freeze).
|
|
104
|
+
4. Build and follow logs and progress.
|
|
105
|
+
|
|
106
|
+
### BCASL pipeline (quick view)
|
|
107
|
+
|
|
108
|
+
```text
|
|
109
|
+
Workspace
|
|
110
|
+
|
|
|
111
|
+
|-- Load bcasl.yml
|
|
112
|
+
|-- Discover plugins (Plugins/)
|
|
113
|
+
|-- Enable / order / priorities
|
|
114
|
+
|-- Sandboxed execution (optional)
|
|
115
|
+
|
|
|
116
|
+
v
|
|
117
|
+
Compilation (PyInstaller / Nuitka / cx_Freeze)
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
---
|
|
121
|
+
|
|
122
|
+
## CLI Usage
|
|
123
|
+
|
|
124
|
+
The ARK CLI provides a structured set of commands for workspace management, building, and developer tasks.
|
|
125
|
+
|
|
126
|
+
### Core Commands
|
|
127
|
+
|
|
128
|
+
```bash
|
|
129
|
+
# Workspace Initialization
|
|
130
|
+
python3 pycompiler_ark.py init --entry src/main.py [--icon icon.ico] [--with-venv]
|
|
131
|
+
|
|
132
|
+
# Building
|
|
133
|
+
python3 pycompiler_ark.py build # Build using ark.yml engine
|
|
134
|
+
python3 pycompiler_ark.py build --engine nuitka # Override engine
|
|
135
|
+
python3 pycompiler_ark.py build --lock latest.lock # Rebuild from lock file
|
|
136
|
+
|
|
137
|
+
# Execution
|
|
138
|
+
python3 pycompiler_ark.py run bcasl # Execute BCASL pipeline
|
|
139
|
+
python3 pycompiler_ark.py run bcasl --list-plugins # List active plugins
|
|
140
|
+
|
|
141
|
+
# GUI
|
|
142
|
+
python3 pycompiler_ark.py gui # Launch modern IDE-like GUI
|
|
143
|
+
python3 pycompiler_ark.py gui --legacy # Launch classic GUI
|
|
144
|
+
```
|
|
145
|
+
|
|
146
|
+
### Developer Commands
|
|
147
|
+
|
|
148
|
+
```bash
|
|
149
|
+
# Discovery
|
|
150
|
+
python3 pycompiler_ark.py list engines # List available engines
|
|
151
|
+
python3 pycompiler_ark.py list plugins # List available BCASL plugins
|
|
152
|
+
|
|
153
|
+
# Configuration (User Paths)
|
|
154
|
+
python3 pycompiler_ark.py set user-engine-dir /path # Set custom engine directory
|
|
155
|
+
python3 pycompiler_ark.py get user-engine-dir # Retrieve path
|
|
156
|
+
|
|
157
|
+
# Scaffolding
|
|
158
|
+
python3 pycompiler_ark.py scaffold engine demo # Create a new engine template
|
|
159
|
+
python3 pycompiler_ark.py scaffold plugin-bcasl demo # Create a new BCASL plugin template
|
|
160
|
+
```
|
|
161
|
+
|
|
162
|
+
### JSON Output
|
|
163
|
+
|
|
164
|
+
For CI/CD and scripting, key commands support the `--json` flag to return machine-readable results:
|
|
165
|
+
|
|
166
|
+
```bash
|
|
167
|
+
python3 pycompiler_ark.py build --json
|
|
168
|
+
python3 pycompiler_ark.py init --entry main.py --json
|
|
169
|
+
```
|
|
170
|
+
|
|
171
|
+
---
|
|
172
|
+
|
|
173
|
+
## Documentation
|
|
174
|
+
|
|
175
|
+
- [Contributing guide](docs/contributing.md)
|
|
176
|
+
- [How to create an engine](docs/how_to_create_an_engine.md)
|
|
177
|
+
- [How to create a BC plugin](docs/how_to_create_a_bc_plugin.md)
|
|
178
|
+
|
|
179
|
+
---
|
|
180
|
+
|
|
181
|
+
## Configuration
|
|
182
|
+
|
|
183
|
+
- **`ark.yml`**: Project metadata, build entrypoint, build include/exclude rules, and global BCASL activation.
|
|
184
|
+
- **`bcasl.yml`**: Detailed BCASL pipeline configuration, plugin settings, and execution order.
|
|
185
|
+
|
|
186
|
+
---
|
|
187
|
+
|
|
188
|
+
## Project layout
|
|
189
|
+
|
|
190
|
+
- `Ui/Cli/`: Command-line interface implementation and entry points.
|
|
191
|
+
- `Core/`: Core business logic for compilation, workspace management, and settings.
|
|
192
|
+
- `Core/Compiler/`: The **EngineRunner** and **MainProcess** (single source of truth for builds).
|
|
193
|
+
- `engines/`: Built-in compilation engines (PyInstaller, Nuitka, cx_Freeze).
|
|
194
|
+
- `bcasl/`: BCASL core engine and plugin loader.
|
|
195
|
+
- `Plugins/`: Pre-compile pipeline plugins.
|
|
196
|
+
- `engine_sdk/` & `Plugins_SDK/`: Developer kits for extending ARK.
|
|
197
|
+
- `Ui/Forms/`: Qt Designer `.ui` files for the IDE-like and Classic layouts.
|
|
198
|
+
- `languages/` & `themes/`: Application-wide translations and QSS themes.
|
|
199
|
+
|
|
200
|
+
---
|
|
201
|
+
|
|
202
|
+
## Development
|
|
203
|
+
|
|
204
|
+
```bash
|
|
205
|
+
# Linting and testing
|
|
206
|
+
ruff check .
|
|
207
|
+
pytest -q tests
|
|
208
|
+
|
|
209
|
+
# Help discovery
|
|
210
|
+
python3 pycompiler_ark.py --help
|
|
211
|
+
python3 pycompiler_ark.py run bcasl --help
|
|
212
|
+
python3 pycompiler_ark.py build --help
|
|
213
|
+
```
|
|
214
|
+
|
|
215
|
+
Quality status:
|
|
216
|
+
|
|
217
|
+
- all documented quality-plan phases are closed
|
|
218
|
+
- the active backlog is considered closed under the current quality freeze
|
|
219
|
+
|
|
220
|
+
---
|
|
221
|
+
|
|
222
|
+
## License
|
|
223
|
+
|
|
224
|
+
Apache-2.0 (see [`LICENSE`](LICENSE)).
|