Metadata-Version: 2.4
Name: freeze_core
Version: 0.2.0
Summary: Create standalone executables from Python scripts
Author-email: Marcelo Duarte <marcelotduarte@users.noreply.github.com>
License-Expression: MIT
Project-URL: Home, https://marcelotduarte.github.io/cx_Freeze
Project-URL: Changelog, https://github.com/marcelotduarte/freeze-core/CHANGELOG.md
Project-URL: Documentation, https://cx-freeze.readthedocs.io
Project-URL: Source, https://github.com/marcelotduarte/freeze-core
Project-URL: Tracker, https://github.com/marcelotduarte/cx_Freeze/issues
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
Requires-Dist: filelock>=3.12.3
Requires-Dist: packaging>=24
Requires-Dist: tomli>=2.0.1; python_version < "3.11"
Requires-Dist: cabarchive>=0.2.4; sys_platform == "win32"
Requires-Dist: cx-logging>=3.1; sys_platform == "win32" and platform_machine != "ARM64"
Requires-Dist: striprtf>=0.0.26; sys_platform == "win32"
Provides-Extra: dev
Requires-Dist: bump-my-version==1.2.3; extra == "dev"
Requires-Dist: cibuildwheel==3.1.4; extra == "dev"
Requires-Dist: pre-commit==4.3.0; extra == "dev"
Provides-Extra: tests
Requires-Dist: coverage==7.10.7; extra == "tests"
Requires-Dist: pytest==8.4.2; extra == "tests"
Requires-Dist: pluggy==1.6.0; extra == "tests"
Requires-Dist: pytest-mock==3.15.1; extra == "tests"
Requires-Dist: pytest-timeout==2.4.0; extra == "tests"
Requires-Dist: pytest-xdist==3.8.0; extra == "tests"
Dynamic: license-file

# freeze-core

Core dependency for cx_Freeze.

[![PyPI version](https://img.shields.io/pypi/v/freeze-core)](https://pypi.org/project/freeze-core/)
[![PyPi Downloads](https://img.shields.io/pypi/dm/freeze-core)](https://pypistats.org/packages/freeze-core)
[![Conda Version](https://img.shields.io/conda/vn/conda-forge/freeze-core.svg)](https://anaconda.org/conda-forge/freeze-core)
[![Conda Downloads](https://anaconda.org/conda-forge/freeze-core/badges/downloads.svg)](https://anaconda.org/conda-forge/cx_freeze)
[![Python](https://img.shields.io/pypi/pyversions/freeze-core)](https://www.python.org/)
[![Coverage](https://raw.githubusercontent.com/marcelotduarte/freeze-core/python-coverage-comment-action-data/badge.svg)](https://htmlpreview.github.io/?https://github.com/marcelotduarte/freeze-core/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)

# 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 `freeze-core` using `pip` into a
virtual environment:

```
pip install --upgrade freeze-core
```

To install the latest development build:

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

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

```
conda install conda-forge::freeze-core
```

# See also:

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

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

[Discussion](https://github.com/marcelotduarte/cx_Freeze/discussions).

[License](https://github.com/marcelotduarte/freeze-core/blob/main/LICENSE).
