Skip to main content

A cli tool to package application with Cython & PyInstaller.

Project description

CyInstaller is a lightweight CLI tools to compile and package your application to a single executable file with related distribution files.

CyInstaller use Cython to compile application’s source codes, then package files with PyInstaller.

Installing

Install and update using pip:

pip install -U CyInstaller

Quickstart

Add a setup.yml in your project, then execute the CyInstaller cli command:

CyInstaller --file setup.yml

CyInstaller default use setup.yml as the config file. If use another file, just execute the CyInstaller command with it as a parameter.

CyInstaller --file 'path/to/the/file'

Configuration

A yaml configuration may looks like:

setup:
  app: CyInstallerApp
  root: .
  modules:
    - base: Common
      package: common
      package_from_base: false
      compiles:
        - ...
      packages:
        - ...
      binaries:
        - ...
      datas:
        - ...
      relates:
    - base: Backend
      ...
  compiles:
      - ...
  packages:
      - ...
  datas:
    - ...
  relates:
    - ...
  cython_binaries: true/false
  hiddenimports:
    - ...
  auto_hiddenimports: true/false
  entrypoint: app.py

  stage:
    path: _build
    debug: true/false
    cython:
      path: cython
      path_tmp: compile
      options:
        ...
    pyinstaller:
      path: package
      template: setup.spec

  dist: target

Detail for each options see the configuration guidelines.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cyinstaller-1.2.0.tar.gz (10.2 kB view hashes)

Uploaded Source

Built Distribution

cyinstaller-1.2.0-py3-none-any.whl (11.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page