Modified by goatpig to support: 1) Running frozen exe from unicode paths 2) Display icons fed to py2exe through setup.py icon_resources in explorer 3) Parse unicode arguments, pass utf8 to python 4) Turned off .exe.log stderr write out ======================================== Uses the zipimport mechanism, so it requires Python 2.3 or later. The zipimport mechanism is able to handle the early imports of the warnings and also the encodings module which is done by Python. Creates a single directory, which must be deployed completely. (Most of this is based on ideas of Mark Hammond, he also implemented most if the code:) Can create any number of console and gui executables in this directory, plus optionally windows service exes, plus optionally exe and dll com servers. The com servers can expose one or more com object classes. All pure Python files are contained in a single zip archive, which is shared by all the executables. The zip archive may also be used by programs embedding Python. Since extension modules cannot be imported from zipfiles, a simple pure Python loader is included in the zipfile which loads the extension from the file system (without requiring that the directory is in sys.path). The executables run with only a single sys.path entry containing the absolute filename of the zipfile archive. Absolute filenames are constructed at runtime from the directory containing the executable, and the zipfile name specified at build time. The way has changed how build targets are specified in the setup script. py2exe installs it own Distribution subclass, which enables additional keyword arguments to the setup function: console = [...] # list of scripts to convert into console executables windows = [...] # list of scripts to convert into gui executables com_servers = [...] # list of fully qualified class names to build into the exe com server service = [...] # list of fully qualified class names to build into a service executable isapi = [...], # list of script names to build into an ISAPI extension. zipfile = "xxx.zip" # filename of the zipfile containing the pure Python modules All of the above arguments are optional. The zipfile name defaults to 'library.zip'.
modified py2exe to support unicode paths
Overview
Ninja is a small build system with a focus on speed.
Ninja Python Distributions Ninja is a small build system with a focus on speed. The latest Ninja python wheels provide ninja 1.10.2.g51db2.kitware.job
py2app is a Python setuptools command which will allow you to make standalone Mac OS X application bundles and plugins from Python scripts.
py2app is a Python setuptools command which will allow you to make standalone Mac OS X application bundles and plugins from Python scripts. py2app is
A modern Python application packaging and distribution tool
PyOxidizer PyOxidizer is a utility for producing binaries that embed Python. The over-arching goal of PyOxidizer is to make complex packaging and dist
An example of repository data as bundles
Bundles This repository is just an example of how we can host Git bundles in a way that supports fetching data from precomputed bundles without the or
local pypi server (custom packages and auto-mirroring of pypi)
localshop A PyPI server which automatically proxies and mirrors PyPI packages based upon packages requested. It has support for multiple indexes and t
auto packaging for iOS
iOS Auto Packaging iOS自动打包脚本 准备 脚本第一次执行之前 先检查依赖, packaging目录下终端执行 pip3 install -r requirements.txt 运行 cd packaging packaging.py -h help -s scheme
A library which implements low-level functions that relate to packaging and distribution of Python
What is it? Distlib is a library which implements low-level functions that relate to packaging and distribution of Python software. It is intended to
modified py2exe to support unicode paths
modified py2exe to support unicode paths
Freeze (package) Python programs into stand-alone executables
PyInstaller Overview PyInstaller bundles a Python application and all its dependencies into a single package. The user can run the packaged app withou
executable archive format
XAR XAR lets you package many files into a single self-contained executable file. This makes it easy to distribute and install. A .xar file is a read-
A library and tool for generating .pex (Python EXecutable) files
PEX Contents Overview Installation Simple Examples Integrating pex into your workflow Documentation Development Contributing Overview pex is a library
tool for creating installers from conda packages
(conda) Constructor Description Constructor is a tool which allows constructing an installer for a collection of conda packages. It solves needed pack
Python-easy-pack For Linux/Unix, Changed by laman28
Python-easy-pack For Linux/Unix, Changed by laman28
Nuitka is a Python compiler written in Python. It's fully compatible with Python 2.6, 2.7, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, and 3.9. You feed it your Python app, it does a lot of clever things, and spits out an executable or extension module.
Nuitka User Manual Contents Overview Usage Requirements Command Line Installation License Tutorial Setup and build on Windows Setup Install Python Ins
A distutils extension to create standalone Windows programs from Python code
py2exe for Python 3 py2exe is a distutils extension which allows to build standalone Windows executable programs (32-bit and 64-bit) from Python scrip
shiv is a command line utility for building fully self contained Python zipapps as outlined in PEP 441, but with all their dependencies included.
shiv shiv is a command line utility for building fully self-contained Python zipapps as outlined in PEP 441, but with all their dependencies included!
debinstaller - A tool to install .deb files in any distro.
debinstaller A tool to install .deb files in any distro. Installation for debinstaller
pipx — Install and Run Python Applications in Isolated Environments
Install and Run Python Applications in Isolated Environments
Create standalone executables from Python scripts, with the same performance and is cross-platform.
About cx_Freeze cx_Freeze creates standalone executables from Python scripts, with the same performance, is cross-platform and should work on any plat
FreezeUI is a python package that creates applications using cx_freeze and GUI by converting .py to .exe .
FreezeUI is a python package use to create cx_Freeze setup files and run them to create applications and msi from python scripts (converts .py to .exe or .msi .