Skip to content

NFJones/pyinstaller-setup

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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>]