Metadata-Version: 2.1
Name: py2exe
Version: 0.10.0.2
Summary: Build standalone executables for Windows (python 3 version)
Home-page: http://www.py2exe.org/
Author: Thomas Heller
Author-email: theller@ctypes.org
Maintainer: Alberto Sottile
Maintainer-email: alby128@gmail.com
License: MIT/X11
Description: py2exe for Python 3
        ===================
        
        `py2exe` is a distutils extension which allows to build standalone
        Windows executable programs (32-bit and 64-bit) from Python scripts;
        Python 3.5 and later are supported. It can build console executables
        and windows (GUI) executables. Building windows services, and DLL/EXE
        COM servers might work but it is not actively supported.
        
        Development of `py2exe`is hosted here:
        https://github.com/py2exe/py2exe.
        
        Changes (from versions 0.9.x)
        ----------------------------
        
        Version 0.10.0.2:
        - Introduce compatibility with Python 3.5, 3.6, 3.7, and 3.8.
        - Dropped compatibility with Python 3.4 and earlier.
        - New or updated hooks for `certifi`, `numpy`, `tkinter`, `socket`, 
        `ssl`, and `six`.
        - The `zipfile` option has been removed.
        - `runtime`: the Python interpreter DLL is no longer altered before 
        being inserted in the executable bundle.
        - Several bugfixes, better error messages.
        
        
        Installation
        ------------
        
        ```pip install py2exe```
        
        
        Using a setup-script
        --------------------
        
        Documentation about the setup-script and other usage tips are in the
        wiki pages at http://www.py2exe.org.
        
        
        Using the builder
        -----------------
        
        The `build_exe` CLI is not actively supported at the moment. Users are 
        encouraged to create their own `setup.py` files. Documentation
        on how to use the CLI it can be found [here](https://github.com/py2exe/py2exe/blob/master/README_ORIGINAL.rst).
        
        Known issues
        ------------
        
        - The modulefinder does not fully support PEP420 implicit namespace packages.
        - Building isapi extensions is not supported.
        - Unit tests rely on `importlib.find_loader(name, path)` which has been
        deprecated since Python 3.4.
        - High-level methods or hooks to embed Qt plugins in the bundle (needed by 
        PysSide2/PyQt5) are missing.
        
        Credits
        --------
        
        Credits to [mitre/caldera-py2exe](https://github.com/mitre/caldera-py2exe) 
        for the  original fixes for Python 3.5.
        
        Further informations about the original development of `py2exe` and other
        usage guidelines can be found [in the original README](https://github.com/py2exe/py2exe/blob/master/README_ORIGINAL.rst).
Platform: Windows
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: C
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Software Distribution
Classifier: Topic :: Utilities
Description-Content-Type: text/markdown
