NFJones / pyinstaller-setup

Use PyInstaller with setuptools!

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PyInstaller Setup

Use pyinstaller with setuptools!

setup.py

from pyinstaller_setuptools import setup

setup(
    ...
    scripts=['path/to/a/script.py'],
    entry_points={
        'console_scripts': ['entry=module.func']
    },
    ...
)

Usage

> python ./setup.py build
> python ./setup.py install
> python ./setup.py pyinstaller [-- <pyinstaller-flags>]

About

Use PyInstaller with setuptools!

License:MIT License


Languages

Language:Python 100.0%