Metadata-Version: 2.1
Name: cx-Freeze
Version: 6.3
Summary: Create standalone executables from Python scripts
Home-page: https://marcelotduarte.github.io/cx_Freeze
Author: Anthony Tuininga
Author-email: anthony.tuininga@gmail.com
Maintainer: Marcelo Duarte @marcelotduarte
License: Python Software Foundation License
Project-URL: Bug Tracker, https://github.com/marcelotduarte/cx_Freeze/issues
Project-URL: CI: GitHub Workflows, https://github.com/marcelotduarte/cx_Freeze/actions?query=branch:master
Project-URL: Source Code, https://github.com/marcelotduarte/cx_Freeze
Description: # About cx\_Freeze
        
        **cx\_Freeze** is a set of scripts and modules for freezing Python scripts into
        executables, in much the same way that [py2exe](https://pypi.org/project/py2exe/) and
        [py2app](https://pypi.org/project/py2app/) do. Unlike these two tools,
        cx\_Freeze is cross platform and should work on any platform that Python itself
        works on. It supports [Python](https://www.python.org/) 3.5.2 or higher.
        
        If you need support for Python 2.x, cx\_Freeze version 5.1.x should be used
        instead.
        
        # Download/Install
        
        Install by issuing the command
        
        ```
        python -m pip install cx_Freeze --upgrade
        ```
        
        or download directly from [PyPI](https://pypi.org/project/cx_Freeze).
        
        If you do not have pip installed or would prefer a more manual installation
        process, the following steps also work once the source package has been
        downloaded and extracted:
        
        ```
        python setup.py build
        python setup.py install
        ```
        
        # Documentation
        
        The official documentation is available
        [here](https://cx-freeze.readthedocs.io).
        
        If you need help you can also ask on the official mailing list:
        https://lists.sourceforge.net/lists/listinfo/cx-freeze-users
        
        # License
        
        cx\_Freeze uses a license derived from the
        [Python Software Foundation License](https://www.python.org/psf/license).
        You can read the cx\_Freeze license in the
        [documentation](https://cx-freeze.readthedocs.io/en/latest/license.html)
        or in the [source repository](doc/src/license.rst).
        
Keywords: freeze cx-freeze python
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Python Software Foundation License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: C
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Software Distribution
Classifier: Topic :: Utilities
Requires-Python: !=3.5.0,!=3.5.1,>=3.5
Description-Content-Type: text/markdown
