python-wheel-to-conda-package


Namepython-wheel-to-conda-package JSON
Version 0.4.0 PyPI version JSON
download
home_pagehttps://github.com/tibdex/python-wheel-to-conda-package
SummaryConvert a Pure-Python Wheel to a noarch Conda package
upload_time2023-11-08 22:33:54
maintainer
docs_urlNone
authorThibault Derousseaux
requires_python>=3.9
licenseMIT
keywords conda conda-package python-wheel wheel
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <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" 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.
[`setup.py bdist_conda`](https://docs.conda.io/projects/conda-build/en/latest/user-guide/recipes/build-without-recipe.html) can build a Conda package without a recipe but it relies on conda-build behind the scenes and thus suffers from the same slowness.

## 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.dev0-42_1337gg-py3-none-any.whl --output-directory /a/b/c/
/a/b/c/test-lib-0.4.2.dev0-1337gg.tar.bz2
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/tibdex/python-wheel-to-conda-package",
    "name": "python-wheel-to-conda-package",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": "",
    "keywords": "conda,conda-package,python-wheel,wheel",
    "author": "Thibault Derousseaux",
    "author_email": "tibdex@gmail.com",
    "download_url": "",
    "platform": null,
    "description": "<a href=\"https://pypi.org/project/python-wheel-to-conda-package\" target=\"_blank\">\n  <img src=\"https://img.shields.io/pypi/v/python-wheel-to-conda-package\" alt=\"Package version\">\n</a>\n\n# Python Wheel to Conda package\n\nThis converts a Pure-Python Wheel to a noarch Conda package.\n\nThis tool can be used to replace `conda build` which can sometimes be very slow.\n[`setup.py bdist_conda`](https://docs.conda.io/projects/conda-build/en/latest/user-guide/recipes/build-without-recipe.html) can build a Conda package without a recipe but it relies on conda-build behind the scenes and thus suffers from the same slowness.\n\n## Usage\n\n### As a library\n\n```python\nfrom python_wheel_to_conda_package import python_wheel_to_conda_package\n\nconda_package_path = python_wheel_to_conda_package(wheel_path, output_directory=some_directory)\n```\n\n### As a command line tool\n\n```console\n$ python-wheel-to-conda-package test_lib-0.4.2.dev0-42_1337gg-py3-none-any.whl --output-directory /a/b/c/\n/a/b/c/test-lib-0.4.2.dev0-1337gg.tar.bz2\n```\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Convert a Pure-Python Wheel to a noarch Conda package",
    "version": "0.4.0",
    "project_urls": {
        "Homepage": "https://github.com/tibdex/python-wheel-to-conda-package",
        "Repository": "https://github.com/tibdex/python-wheel-to-conda-package"
    },
    "split_keywords": [
        "conda",
        "conda-package",
        "python-wheel",
        "wheel"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "383e724348ad96cfa4b0d868c4106ad60adcc1cc66f68c7e7237c140c945fecc",
                "md5": "7b5cbd1b7a9b8e4bae3ac8222caab0fb",
                "sha256": "eb5e80d383b1a55f853dace589b61d6798c8fa50d6937bfa9141fc3e0a09cc49"
            },
            "downloads": -1,
            "filename": "python_wheel_to_conda_package-0.4.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "7b5cbd1b7a9b8e4bae3ac8222caab0fb",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 11321,
            "upload_time": "2023-11-08T22:33:54",
            "upload_time_iso_8601": "2023-11-08T22:33:54.715001Z",
            "url": "https://files.pythonhosted.org/packages/38/3e/724348ad96cfa4b0d868c4106ad60adcc1cc66f68c7e7237c140c945fecc/python_wheel_to_conda_package-0.4.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-08 22:33:54",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "tibdex",
    "github_project": "python-wheel-to-conda-package",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "python-wheel-to-conda-package"
}
        
Elapsed time: 0.19076s