Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/calebmadrigal/cx-freeze-example
Example of using cx_Freeze to turn a python script into a distributable native binary.
https://github.com/calebmadrigal/cx-freeze-example
Last synced: about 1 month ago
JSON representation
Example of using cx_Freeze to turn a python script into a distributable native binary.
- Host: GitHub
- URL: https://github.com/calebmadrigal/cx-freeze-example
- Owner: calebmadrigal
- License: mit
- Created: 2015-10-16T01:34:02.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-10-16T01:40:40.000Z (about 9 years ago)
- Last Synced: 2024-04-15T06:53:47.216Z (7 months ago)
- Language: Python
- Size: 141 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cx-freeze-example
Example of using cx_Freeze to turn a python script into a distributable native binary.
## Usage
#### Build
python setup.py build
The distributable binary will be in the build folder. Note that this single config will build for Windows, OS X, and Linux.
#### Distribute
In order to distribute, you must copy not only the binary, but the directory that contains it, which contains necessary support files.