Metadata-Version: 2.4
Name: cx_Freeze
Version: 8.4.0
Summary: Create standalone executables from Python scripts
Author-email: Anthony Tuininga <anthony.tuininga@gmail.com>, Marcelo Duarte <marcelotduarte@users.noreply.github.com>
License-Expression: PSF-2.0
Project-URL: Home, https://marcelotduarte.github.io/cx_Freeze
Project-URL: Changelog, https://github.com/marcelotduarte/cx_Freeze/blob/main/CHANGELOG.md
Project-URL: Documentation, https://cx-freeze.readthedocs.io
Project-URL: Source, https://github.com/marcelotduarte/cx_Freeze
Project-URL: Tracker, https://github.com/marcelotduarte/cx_Freeze/issues
Project-URL: Workflows, https://github.com/marcelotduarte/cx_Freeze/actions?query=branch:main
Keywords: cx-freeze cxfreeze cx_Freeze freeze python
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
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 :: Only
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Software Distribution
Classifier: Topic :: Utilities
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE.md
Requires-Dist: filelock>=3.12.3
Requires-Dist: packaging>=24
Requires-Dist: setuptools
Requires-Dist: tomli>=2.0.1; python_version < "3.11"
Requires-Dist: patchelf<0.18,>=0.14; sys_platform == "linux" and platform_machine == "x86_64"
Requires-Dist: patchelf<0.18,>=0.14; sys_platform == "linux" and platform_machine == "i686"
Requires-Dist: patchelf<0.18,>=0.14; sys_platform == "linux" and platform_machine == "aarch64"
Requires-Dist: patchelf<0.18,>=0.14; sys_platform == "linux" and platform_machine == "armv7l"
Requires-Dist: patchelf<0.18,>=0.14; sys_platform == "linux" and platform_machine == "ppc64le"
Requires-Dist: patchelf<0.18,>=0.14; sys_platform == "linux" and platform_machine == "s390x"
Requires-Dist: dmgbuild>=1.6.1; sys_platform == "darwin"
Requires-Dist: cabarchive>=0.2.4; sys_platform == "win32"
Requires-Dist: cx-logging>=3.1; sys_platform == "win32" and platform_machine != "ARM64"
Requires-Dist: lief<=0.16.6,>=0.15.1; sys_platform == "win32"
Requires-Dist: striprtf>=0.0.26; sys_platform == "win32"
Provides-Extra: dev
Requires-Dist: bump-my-version==1.2.1; extra == "dev"
Requires-Dist: cibuildwheel==2.23.3; extra == "dev"
Requires-Dist: pre-commit==4.2.0; extra == "dev"
Provides-Extra: doc
Requires-Dist: sphinx==8.2.3; python_version >= "3.11" and extra == "doc"
Requires-Dist: sphinx-issues==5.0.1; python_version >= "3.11" and extra == "doc"
Requires-Dist: sphinx-new-tab-link==0.8.0; python_version >= "3.11" and extra == "doc"
Requires-Dist: sphinx-tabs==3.4.7; python_version >= "3.11" and extra == "doc"
Requires-Dist: furo==2024.8.6; python_version >= "3.11" and extra == "doc"
Requires-Dist: myst-parser==4.0.1; python_version >= "3.11" and extra == "doc"
Provides-Extra: tests
Requires-Dist: coverage==7.10.2; extra == "tests"
Requires-Dist: pytest==8.4.1; extra == "tests"
Requires-Dist: pluggy==1.6.0; extra == "tests"
Requires-Dist: pytest-mock==3.14.1; extra == "tests"
Requires-Dist: pytest-timeout==2.4.0; extra == "tests"
Requires-Dist: pytest-xdist==3.8.0; extra == "tests"
Dynamic: license-file

**cx_Freeze** Creates standalone executables from Python scripts with the same performance
as the original script.

It is cross-platform and should work on any platform that Python runs on.

[![PyPI version](https://img.shields.io/pypi/v/cx_Freeze)](https://pypi.org/project/cx-freeze/)
[![PyPi Downloads](https://img.shields.io/pypi/dm/cx_Freeze)](https://pypistats.org/packages/cx-freeze)
[![Conda Version](https://img.shields.io/conda/vn/conda-forge/cx_freeze.svg)](https://anaconda.org/conda-forge/cx_freeze)
[![Conda Downloads](https://anaconda.org/conda-forge/cx_freeze/badges/downloads.svg)](https://anaconda.org/conda-forge/cx_freeze)
[![Python](https://img.shields.io/pypi/pyversions/cx-freeze)](https://www.python.org/)
[![Actions status](https://github.com/marcelotduarte/cx_Freeze/workflows/CI/badge.svg)](https://github.com/marcelotduarte/cx_Freeze/actions/workflows/ci.yml)
[![CodeQL](https://github.com/marcelotduarte/cx_Freeze/workflows/CodeQL/badge.svg)](https://github.com/marcelotduarte/cx_Freeze/actions/workflows/codeql.yml)
[![Coverage](https://raw.githubusercontent.com/marcelotduarte/cx_Freeze/python-coverage-comment-action-data/badge.svg)](https://htmlpreview.github.io/?https://github.com/marcelotduarte/cx_Freeze/blob/python-coverage-comment-action-data/htmlcov/index.html)
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
[![Documentation Status](https://readthedocs.org/projects/cx-freeze/badge/?version=stable)](https://cx-freeze.readthedocs.io/en/stable/?badge=stable)

# Installation

Choose the Python package manager according to your system. See how the
installation works with the most common ones, which are pip and conda.

To install the latest version of `cx_Freeze` using `pip` into a
virtual environment:

```
pip install --upgrade cx_Freeze
```

To install the latest development build:

```
pip uninstall cx_Freeze
pip install --extra-index-url https://test.pypi.org/simple/ cx_Freeze --pre --no-cache
```

Installing cx_freeze from the conda-forge channel can be achieved with the
command:

```
conda install conda-forge::cx_freeze
```

Please check the
[installation](https://cx-freeze.readthedocs.io/en/latest/installation.html)
for more information.

# Changelog

[Changelog](https://github.com/marcelotduarte/cx_Freeze/blob/main/CHANGELOG.md)

# Documentation

[Documentation](https://cx-freeze.readthedocs.io).

If you need help you can also ask on the
[discussion](https://github.com/marcelotduarte/cx_Freeze/discussions) channel.

# 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/stable/license.html)
or in the [source repository](LICENSE.md).
