Metadata-Version: 2.1
Name: pyinstaller_setuptools
Version: 2019.3
Summary: Use pyinstaller in your setup.py
Home-page: https://github.com/NFJones/pyinstaller-setup
Author: Neil F Jones
License: UNKNOWN
Description: # PyInstaller Setup
        
        Use pyinstaller with setuptools!
        
        ## setup.py
        
        ```python
        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>]
        ```
        
Keywords: sample setuptools development pyinstaller
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4
Description-Content-Type: text/markdown
