Metadata-Version: 2.1
Name: python-wheel-to-conda-package
Version: 0.1.0
Summary: Convert a Pure-Python Wheel to a noarch Conda package
License: MIT
Author: Thibault Derousseaux
Author-email: tibdex@gmail.com
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Description-Content-Type: text/markdown

<a href="https://pypi.org/project/python-wheel-to-conda-package" target="_blank">
  <img src="https://img.shields.io/pypi/v/python-wheel-to-conda-package?color=%2334D058&label=pypi%20package" alt="Package version">
</a>

# Python Wheel to Conda package

This converts a Pure-Python Wheel to a noarch Conda package.

This tool can be used to replace `conda build` which can sometimes be very slow.

## Usage

### As a library

```python
from python_wheel_to_conda_package import python_wheel_to_conda_package

conda_package_path = python_wheel_to_conda_package(wheel_path, output_directory=some_directory)
```

### As a command line tool

```console
$ python_wheel_to_conda_package test_lib-0.4.2-0_1337-py3-none-any.whl --output-directory /a/b/c/
/a/b/c/test-lib-0.4.2-1337.tar.bz2
```

