Metadata-Version: 1.1
Name: python-embedded-launcher
Version: 0.11
Summary: Launcher exe for distributing Python apps on Windows
Home-page: https://github.com/zsquareplusc/python-embedded-launcher
Author: Chris Liechti
Author-email: cliechti@gmx.net
License: BSD
Description: ==========================
         python-embedded-launcher
        ==========================
        
        An other tool to make standalone Windows applications with Python.
        
        The launcher is a small C program that loads the Python DLL and calls
        ``Py_Main`` with itself as parameter, loading a zipped Python application
        appended to the exe. It isolates the execution from the environment (e.g.
        other Python installations on the same machine).
        
        Dependencies are installed with pip. There is no automatic detection or
        scanning of source files. Instead, ``setup.py`` (with setuptools'
        ``install_requires``) or ``requirements.txt`` is used.
        
        
        Quick Start
        ===========
        - make a ``setup.py`` for your application, use ``scripts`` and/or
          ``entry_points`` for ``console_scripts``
        - run ``python setup.py bdist_launcher``
        
        Done. See result in ``dist/launcher*``.
        
        Documentation
        =============
        See `documentation/index.rst`_ for more details.
        
        .. _`documentation/index.rst`: documentation/index.rst
        
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development :: Libraries
