hatch-showcase


Namehatch-showcase JSON
Version 0.5.0 PyPI version JSON
download
home_page
SummaryA project showcasing features and plugins for Hatch
upload_time2023-05-12 15:29:24
maintainer
docs_urlNone
author
requires_python>=3.7
licenseMIT
keywords hatch
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # hatch-showcase

| | |
| --- | --- |
| CI/CD | [![CI - Test](https://github.com/ofek/hatch-showcase/actions/workflows/test.yml/badge.svg)](https://github.com/ofek/hatch-showcase/actions/workflows/test.yml) [![CD - Build](https://github.com/ofek/hatch-showcase/actions/workflows/build.yml/badge.svg)](https://github.com/ofek/hatch-showcase/actions/workflows/build.yml) |
| Package | [![PyPI - Version](https://img.shields.io/pypi/v/hatch-showcase.svg?logo=pypi&label=PyPI&logoColor=gold)](https://pypi.org/project/hatch-showcase/) [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/hatch-showcase.svg?logo=python&label=Python&logoColor=gold)](https://pypi.org/project/hatch-showcase/) |
| Meta | [![Hatch project](https://img.shields.io/badge/%F0%9F%A5%9A-Hatch-4051b5.svg)](https://github.com/pypa/hatch) [![code style - black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) [![types - Mypy](https://img.shields.io/badge/types-Mypy-blue.svg)](https://github.com/ambv/black) [![License - MIT](https://img.shields.io/badge/license-MIT-9400d3.svg)](https://spdx.org/licenses/) [![GitHub Sponsors](https://img.shields.io/github/sponsors/ofek?logo=GitHub%20Sponsors&style=social)](https://github.com/sponsors/ofek) |

-----

This project is meant to showcase various features and plugins for [Hatch](https://github.com/pypa/hatch) as well as providing a place to test experimental functionality.

**Table of Contents**

- [Installation](#installation)
- [Version source](#version-source)
- [Environments](#environments)
- [Build](#build)
- [License](#license)

## Installation

```console
pip install hatch-showcase
```

## Version source

- The [hatch-vcs](https://github.com/ofek/hatch-vcs) version source plugin determines the project version using Git tags

## Environments

- Defined neatly in a standalone [`hatch.toml`](https://hatch.pypa.io/latest/intro/#configuration)
- The `test` matrix uses the [hatch-containers](https://github.com/ofek/hatch-containers) plugin to run each environment inside Docker containers; usage can be seen in the [test](.github/workflows/test.yml) GitHub workflow

## Build

- All build targets use the [hatch-vcs](https://github.com/ofek/hatch-vcs) build hook plugin to ship a `_version.py` file so the version can be used at runtime
- Wheels use the [hatch-mypyc](https://github.com/ofek/hatch-mypyc) build hook plugin to first compile all code with [Mypyc](https://github.com/mypyc/mypyc)
- The [build](.github/workflows/build.yml) GitHub workflow shows how to:
  - use [cibuildwheel](https://github.com/pypa/cibuildwheel) to distribute binary wheels for every platform
  - use the [app](https://hatch.pypa.io/latest/plugins/builder/app/) build target to build standalone distributions for every platform

## License

`hatch-showcase` is distributed under the terms of the [MIT](https://spdx.org/licenses/MIT.html) license.

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "hatch-showcase",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "hatch",
    "author": "",
    "author_email": "Ofek Lev <oss@ofek.dev>",
    "download_url": "https://files.pythonhosted.org/packages/37/f6/65ddbe7b652767696c914cdeefffcb116a73033e889df3ee568bc4a4968f/hatch_showcase-0.5.0.tar.gz",
    "platform": null,
    "description": "# hatch-showcase\n\n| | |\n| --- | --- |\n| CI/CD | [![CI - Test](https://github.com/ofek/hatch-showcase/actions/workflows/test.yml/badge.svg)](https://github.com/ofek/hatch-showcase/actions/workflows/test.yml) [![CD - Build](https://github.com/ofek/hatch-showcase/actions/workflows/build.yml/badge.svg)](https://github.com/ofek/hatch-showcase/actions/workflows/build.yml) |\n| Package | [![PyPI - Version](https://img.shields.io/pypi/v/hatch-showcase.svg?logo=pypi&label=PyPI&logoColor=gold)](https://pypi.org/project/hatch-showcase/) [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/hatch-showcase.svg?logo=python&label=Python&logoColor=gold)](https://pypi.org/project/hatch-showcase/) |\n| Meta | [![Hatch project](https://img.shields.io/badge/%F0%9F%A5%9A-Hatch-4051b5.svg)](https://github.com/pypa/hatch) [![code style - black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) [![types - Mypy](https://img.shields.io/badge/types-Mypy-blue.svg)](https://github.com/ambv/black) [![License - MIT](https://img.shields.io/badge/license-MIT-9400d3.svg)](https://spdx.org/licenses/) [![GitHub Sponsors](https://img.shields.io/github/sponsors/ofek?logo=GitHub%20Sponsors&style=social)](https://github.com/sponsors/ofek) |\n\n-----\n\nThis project is meant to showcase various features and plugins for [Hatch](https://github.com/pypa/hatch) as well as providing a place to test experimental functionality.\n\n**Table of Contents**\n\n- [Installation](#installation)\n- [Version source](#version-source)\n- [Environments](#environments)\n- [Build](#build)\n- [License](#license)\n\n## Installation\n\n```console\npip install hatch-showcase\n```\n\n## Version source\n\n- The [hatch-vcs](https://github.com/ofek/hatch-vcs) version source plugin determines the project version using Git tags\n\n## Environments\n\n- Defined neatly in a standalone [`hatch.toml`](https://hatch.pypa.io/latest/intro/#configuration)\n- The `test` matrix uses the [hatch-containers](https://github.com/ofek/hatch-containers) plugin to run each environment inside Docker containers; usage can be seen in the [test](.github/workflows/test.yml) GitHub workflow\n\n## Build\n\n- All build targets use the [hatch-vcs](https://github.com/ofek/hatch-vcs) build hook plugin to ship a `_version.py` file so the version can be used at runtime\n- Wheels use the [hatch-mypyc](https://github.com/ofek/hatch-mypyc) build hook plugin to first compile all code with [Mypyc](https://github.com/mypyc/mypyc)\n- The [build](.github/workflows/build.yml) GitHub workflow shows how to:\n  - use [cibuildwheel](https://github.com/pypa/cibuildwheel) to distribute binary wheels for every platform\n  - use the [app](https://hatch.pypa.io/latest/plugins/builder/app/) build target to build standalone distributions for every platform\n\n## License\n\n`hatch-showcase` is distributed under the terms of the [MIT](https://spdx.org/licenses/MIT.html) license.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A project showcasing features and plugins for Hatch",
    "version": "0.5.0",
    "project_urls": {
        "Donate": "https://github.com/sponsors/ofek",
        "History": "https://github.com/ofek/hatch-showcase/blob/master/HISTORY.md",
        "Issues": "https://github.com/ofek/hatch-showcase/issues",
        "Source": "https://github.com/ofek/hatch-showcase"
    },
    "split_keywords": [
        "hatch"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aa5ba17e3460cfb18466c0cadc48995b1dc8cb2038378e1bb18c3cca5b4a830e",
                "md5": "26f68646fcf3c2fdf1755b06b7a6d153",
                "sha256": "69bdd10bfb4c8e821ab1d151efb1176daf2079d172e8d80ce60914ddf29fde52"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-cp310-cp310-macosx_10_16_x86_64.whl",
            "has_sig": false,
            "md5_digest": "26f68646fcf3c2fdf1755b06b7a6d153",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 52785,
            "upload_time": "2023-05-12T15:28:02",
            "upload_time_iso_8601": "2023-05-12T15:28:02.822913Z",
            "url": "https://files.pythonhosted.org/packages/aa/5b/a17e3460cfb18466c0cadc48995b1dc8cb2038378e1bb18c3cca5b4a830e/hatch_showcase-0.5.0-cp310-cp310-macosx_10_16_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0bab29cd630f4baeca413d39528c015fb11247b35066e40b08119691e67b651b",
                "md5": "c09893b03a8f6ac7a6615d073c78bcdc",
                "sha256": "6959c6101408d624c4303da7d40012c522ab89759ecd8396f92b731ce17999b3"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c09893b03a8f6ac7a6615d073c78bcdc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 95971,
            "upload_time": "2023-05-12T15:28:04",
            "upload_time_iso_8601": "2023-05-12T15:28:04.810117Z",
            "url": "https://files.pythonhosted.org/packages/0b/ab/29cd630f4baeca413d39528c015fb11247b35066e40b08119691e67b651b/hatch_showcase-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8088e3d4daf7b4afd358ffe2e28db102586f41b17192c4dfcf205ebb9b063cdd",
                "md5": "2c547a4d000d2cbdae723bc08373f04f",
                "sha256": "e15db16d7c3dfdeeddd951380ed10cb1c8a3d97093ef9f22c197c4ca8908be88"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-cp310-cp310-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "2c547a4d000d2cbdae723bc08373f04f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 96926,
            "upload_time": "2023-05-12T15:28:07",
            "upload_time_iso_8601": "2023-05-12T15:28:07.119801Z",
            "url": "https://files.pythonhosted.org/packages/80/88/e3d4daf7b4afd358ffe2e28db102586f41b17192c4dfcf205ebb9b063cdd/hatch_showcase-0.5.0-cp310-cp310-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "23c2dd48ecaf6bd8f746274c7bce174a5cb6a5102c4c38a7dc13510496a8126a",
                "md5": "650a74c5ac3409ea74569da7eefff8e8",
                "sha256": "6e8fe1798f09b5245427828d724e6b39acc064941fd042de5d1b5465bbbfb23b"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "650a74c5ac3409ea74569da7eefff8e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 95738,
            "upload_time": "2023-05-12T15:28:13",
            "upload_time_iso_8601": "2023-05-12T15:28:13.458011Z",
            "url": "https://files.pythonhosted.org/packages/23/c2/dd48ecaf6bd8f746274c7bce174a5cb6a5102c4c38a7dc13510496a8126a/hatch_showcase-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e2d3773e21f1783af4ffb1692f1ce46a892d2793915fe55d110df28bb7cea6c3",
                "md5": "a498ab2804e39e5d8877faad5cf1c8d9",
                "sha256": "7354da9239a0afb5a430be60b9f91681ecee0597b6bdac8ec51b37c6b190cf78"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a498ab2804e39e5d8877faad5cf1c8d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 91172,
            "upload_time": "2023-05-12T15:28:14",
            "upload_time_iso_8601": "2023-05-12T15:28:14.991064Z",
            "url": "https://files.pythonhosted.org/packages/e2/d3/773e21f1783af4ffb1692f1ce46a892d2793915fe55d110df28bb7cea6c3/hatch_showcase-0.5.0-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c0748eb7ae210ded688c7bf25b39bc06711e3a7626640192720c75e0652a5a13",
                "md5": "a4c83b4c3aa228a018b2c3862d42f441",
                "sha256": "0eb25e89ee7644904cd3996a4dce8bda1c6435f3315c2d440572ef12cc7eb92b"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "a4c83b4c3aa228a018b2c3862d42f441",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 94332,
            "upload_time": "2023-05-12T15:28:18",
            "upload_time_iso_8601": "2023-05-12T15:28:18.977282Z",
            "url": "https://files.pythonhosted.org/packages/c0/74/8eb7ae210ded688c7bf25b39bc06711e3a7626640192720c75e0652a5a13/hatch_showcase-0.5.0-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c0a12df011d56f7ff804e53dc7bf42708c2025ce9bbb66786c2012c1d361a41a",
                "md5": "a29543f0add2322f101a21f6b72d6689",
                "sha256": "24145442d59131c22fa79a58150c48435f88af1cd650cd09e354ed5637a43460"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a29543f0add2322f101a21f6b72d6689",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 92323,
            "upload_time": "2023-05-12T15:28:21",
            "upload_time_iso_8601": "2023-05-12T15:28:21.036332Z",
            "url": "https://files.pythonhosted.org/packages/c0/a1/2df011d56f7ff804e53dc7bf42708c2025ce9bbb66786c2012c1d361a41a/hatch_showcase-0.5.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "14be243c5edcea94e0070fe66388695ae1f131f7ead07633cca806ae00c3bc4b",
                "md5": "9317f15a684f3f15d933f5d0ff7a8fe6",
                "sha256": "0382e20e98c3398d3046f1c9b3930fb6ff757e433c6b38278aff1f8975d28a03"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "9317f15a684f3f15d933f5d0ff7a8fe6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 35785,
            "upload_time": "2023-05-12T15:28:22",
            "upload_time_iso_8601": "2023-05-12T15:28:22.851127Z",
            "url": "https://files.pythonhosted.org/packages/14/be/243c5edcea94e0070fe66388695ae1f131f7ead07633cca806ae00c3bc4b/hatch_showcase-0.5.0-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4241353156349c2a2e679b925297cfca3aa303f2b4b972064a1a24022e748f7b",
                "md5": "d482e338f04541efc8039761462125d1",
                "sha256": "9eefa576b926ca57c7acd93185b6dfa7b8074827a862bfabd84de6f0be9a4b29"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d482e338f04541efc8039761462125d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 38947,
            "upload_time": "2023-05-12T15:28:24",
            "upload_time_iso_8601": "2023-05-12T15:28:24.077814Z",
            "url": "https://files.pythonhosted.org/packages/42/41/353156349c2a2e679b925297cfca3aa303f2b4b972064a1a24022e748f7b/hatch_showcase-0.5.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c94dc789b819d8dd318f3b5cce62221dcdcfb1a53e66571bf72ea7cb58e6027b",
                "md5": "aa65a93dd28b243dd7fe9992e980f8ed",
                "sha256": "35045ccac87342dfd4122f924ba5a2ac61ce0c373cb67be118bfaa6c458bd2f5"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-cp311-cp311-macosx_10_16_x86_64.whl",
            "has_sig": false,
            "md5_digest": "aa65a93dd28b243dd7fe9992e980f8ed",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 52189,
            "upload_time": "2023-05-12T15:28:27",
            "upload_time_iso_8601": "2023-05-12T15:28:27.881410Z",
            "url": "https://files.pythonhosted.org/packages/c9/4d/c789b819d8dd318f3b5cce62221dcdcfb1a53e66571bf72ea7cb58e6027b/hatch_showcase-0.5.0-cp311-cp311-macosx_10_16_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9020f41a47bd2c8c1293fedb45b3664e7b9cddb198e016789a49226d07900bad",
                "md5": "4f0adf71dec00e99e0c0c57bd4d5a464",
                "sha256": "a96cfad420d70dbf1a4390961cbc1589ca0bdbe6876c35a8f5fd06dfac6b75d4"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4f0adf71dec00e99e0c0c57bd4d5a464",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 96002,
            "upload_time": "2023-05-12T15:28:28",
            "upload_time_iso_8601": "2023-05-12T15:28:28.988265Z",
            "url": "https://files.pythonhosted.org/packages/90/20/f41a47bd2c8c1293fedb45b3664e7b9cddb198e016789a49226d07900bad/hatch_showcase-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a810bf54bad88038edcf79aa0a22a804a6e89f2182431ba4c2d055d553b84e76",
                "md5": "859a326776ab13cf1b2e661900e73bce",
                "sha256": "e8eb751a7fafa0e327c780680df3d5dea232932f0ccc840aa2b065a171c01d84"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-cp311-cp311-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "859a326776ab13cf1b2e661900e73bce",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 96402,
            "upload_time": "2023-05-12T15:28:30",
            "upload_time_iso_8601": "2023-05-12T15:28:30.594539Z",
            "url": "https://files.pythonhosted.org/packages/a8/10/bf54bad88038edcf79aa0a22a804a6e89f2182431ba4c2d055d553b84e76/hatch_showcase-0.5.0-cp311-cp311-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a66652eebdf81de391ee6ba7ef2cc23440816c6670e3e4ff009cbaff383fb2ff",
                "md5": "83bca729f02e74036dcc95cb5cda6ce0",
                "sha256": "40ea4185fe851357a6798bd8b009678763c2bd3ed1c710e6a49effaa1c3bb530"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "83bca729f02e74036dcc95cb5cda6ce0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 95919,
            "upload_time": "2023-05-12T15:28:33",
            "upload_time_iso_8601": "2023-05-12T15:28:33.804979Z",
            "url": "https://files.pythonhosted.org/packages/a6/66/52eebdf81de391ee6ba7ef2cc23440816c6670e3e4ff009cbaff383fb2ff/hatch_showcase-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "adf42ec85478c00ebf3e5b4828bea75bcc8b5ee45f8af4243c207d7a0da21f80",
                "md5": "d59974207497a3dd98134e84f29cca68",
                "sha256": "c239f21fe6f09b1fd39b6fda6498274e05df9afecafc0a46bcbbd36abecb92ed"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d59974207497a3dd98134e84f29cca68",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 90786,
            "upload_time": "2023-05-12T15:28:36",
            "upload_time_iso_8601": "2023-05-12T15:28:36.119144Z",
            "url": "https://files.pythonhosted.org/packages/ad/f4/2ec85478c00ebf3e5b4828bea75bcc8b5ee45f8af4243c207d7a0da21f80/hatch_showcase-0.5.0-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d801dfbfefcd8ef2c5948ee5c6981153b8fb45994fc4ab2d9aeb9228931fe268",
                "md5": "2ba22e594998b546315d001f9d65cb00",
                "sha256": "86d5bea3da0c5a36755e74f49adef3a6a7c023ebe965c1af01153a062c206e0e"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "2ba22e594998b546315d001f9d65cb00",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 93582,
            "upload_time": "2023-05-12T15:28:37",
            "upload_time_iso_8601": "2023-05-12T15:28:37.735163Z",
            "url": "https://files.pythonhosted.org/packages/d8/01/dfbfefcd8ef2c5948ee5c6981153b8fb45994fc4ab2d9aeb9228931fe268/hatch_showcase-0.5.0-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1ac66d3fe7126a8de7d9fdd2d848e3a9dd4061ad18fafd336b837742addb4a00",
                "md5": "69e36a981d423c7b69d16f637459f1c9",
                "sha256": "a3d9853d3c90cab135e7d4a4ddd1466c98aca30b50508a5f0b0b6599d7874013"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "69e36a981d423c7b69d16f637459f1c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 92190,
            "upload_time": "2023-05-12T15:28:39",
            "upload_time_iso_8601": "2023-05-12T15:28:39.900929Z",
            "url": "https://files.pythonhosted.org/packages/1a/c6/6d3fe7126a8de7d9fdd2d848e3a9dd4061ad18fafd336b837742addb4a00/hatch_showcase-0.5.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3cdb57f9efa940549dba3b33c9abca49d21970800324778c76abcd8485a817ec",
                "md5": "f7b8029cef9178b746083eeb649fff35",
                "sha256": "94e19b35d42c30c9ba4a3f84f36bcf519633fcfaeb666762414e07badaad1816"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "f7b8029cef9178b746083eeb649fff35",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 35659,
            "upload_time": "2023-05-12T15:28:41",
            "upload_time_iso_8601": "2023-05-12T15:28:41.011324Z",
            "url": "https://files.pythonhosted.org/packages/3c/db/57f9efa940549dba3b33c9abca49d21970800324778c76abcd8485a817ec/hatch_showcase-0.5.0-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e7dc4cc022bb404e22af21c54bf3da5a72530c06dd999762ab7e677031f81bfd",
                "md5": "e2e9111e91c51d9b7638c490bc24b22a",
                "sha256": "a37ef83835dfb6b68fc938f35f35e5b76591d7eff1368651b975f0f189a4d84b"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e2e9111e91c51d9b7638c490bc24b22a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 38886,
            "upload_time": "2023-05-12T15:28:45",
            "upload_time_iso_8601": "2023-05-12T15:28:45.742104Z",
            "url": "https://files.pythonhosted.org/packages/e7/dc/4cc022bb404e22af21c54bf3da5a72530c06dd999762ab7e677031f81bfd/hatch_showcase-0.5.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "440c3012dee731c859a363fac3f914c64d472b9ef3ac59d3e28f1a706423c29a",
                "md5": "a1df9ee4047dd063de560f6fee0c55a1",
                "sha256": "b5338af31ac4941e4803ba7f5e1279bc2b85e1fabdc8aa8973fe912adc7845d4"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-cp37-cp37m-macosx_10_16_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a1df9ee4047dd063de560f6fee0c55a1",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 50853,
            "upload_time": "2023-05-12T15:28:46",
            "upload_time_iso_8601": "2023-05-12T15:28:46.726871Z",
            "url": "https://files.pythonhosted.org/packages/44/0c/3012dee731c859a363fac3f914c64d472b9ef3ac59d3e28f1a706423c29a/hatch_showcase-0.5.0-cp37-cp37m-macosx_10_16_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6ef390e83bf291ea87d352cb0a12c4016af47a741e1525f1f0696fcf9439dad3",
                "md5": "4b00a0dcd34d912d19a071728e1b647c",
                "sha256": "b3b053d09b17ee4afbaa8ca1fd07b646f85df72c2cc2aeab7be463abef04836e"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4b00a0dcd34d912d19a071728e1b647c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 84591,
            "upload_time": "2023-05-12T15:28:47",
            "upload_time_iso_8601": "2023-05-12T15:28:47.997564Z",
            "url": "https://files.pythonhosted.org/packages/6e/f3/90e83bf291ea87d352cb0a12c4016af47a741e1525f1f0696fcf9439dad3/hatch_showcase-0.5.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "788d5880029c27683b7cb4d5c560012b22aed92b42fa61e332a156f64b66964b",
                "md5": "d3c40204567ae8d17443b6b3d90eb96e",
                "sha256": "3907277b313f54a3215d521ccb7ed52d0ab8c6bb3271b78e0ecd4b765643b758"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-cp37-cp37m-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d3c40204567ae8d17443b6b3d90eb96e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 87521,
            "upload_time": "2023-05-12T15:28:51",
            "upload_time_iso_8601": "2023-05-12T15:28:51.718866Z",
            "url": "https://files.pythonhosted.org/packages/78/8d/5880029c27683b7cb4d5c560012b22aed92b42fa61e332a156f64b66964b/hatch_showcase-0.5.0-cp37-cp37m-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f861ce6c39eafab4a20a0f6e1f7a9095ffb6465baa946c9ca4d64a3fe7a98d2a",
                "md5": "ed6217db783927b92f94322d2ced8e4c",
                "sha256": "be5d7579a3b7924e0070f4e43dd0cdb3ad4572b912ae59dae6ce730d6e024584"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ed6217db783927b92f94322d2ced8e4c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 85167,
            "upload_time": "2023-05-12T15:28:53",
            "upload_time_iso_8601": "2023-05-12T15:28:53.171512Z",
            "url": "https://files.pythonhosted.org/packages/f8/61/ce6c39eafab4a20a0f6e1f7a9095ffb6465baa946c9ca4d64a3fe7a98d2a/hatch_showcase-0.5.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "015331168f2f7bd9b2eca626806512533191cd3c648664e29c14a2a60a068c3d",
                "md5": "f8c90adc75efd34b2d65f29ba265566c",
                "sha256": "16095576fcd595612108e005d2deafcd32e0500c31267e9bfa6b89d2f739b5e7"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f8c90adc75efd34b2d65f29ba265566c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 80477,
            "upload_time": "2023-05-12T15:28:54",
            "upload_time_iso_8601": "2023-05-12T15:28:54.663485Z",
            "url": "https://files.pythonhosted.org/packages/01/53/31168f2f7bd9b2eca626806512533191cd3c648664e29c14a2a60a068c3d/hatch_showcase-0.5.0-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cc2ef15d24c51f3f57b4816e3a03430c4298e6f73d7dd74ba778dcfdb893a950",
                "md5": "c63668372d008c8fa414e554d07ea56e",
                "sha256": "939f21cfa3f2f8ed0fe581afcac534f1a00d52fda238ded1f9f5ca99db3e765b"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "c63668372d008c8fa414e554d07ea56e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 85264,
            "upload_time": "2023-05-12T15:28:56",
            "upload_time_iso_8601": "2023-05-12T15:28:56.227411Z",
            "url": "https://files.pythonhosted.org/packages/cc/2e/f15d24c51f3f57b4816e3a03430c4298e6f73d7dd74ba778dcfdb893a950/hatch_showcase-0.5.0-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1b43a14660a684cb8cb849a8bc8e3a23daed7bd5dad7a1c1ea5d5daa644f4f58",
                "md5": "ff7e4c0616966425fb339b9acf29b1ea",
                "sha256": "40218dcfc28884ddcf0b5c1fa974cb18d4e92714b3bb0a408b4ebccf51a66092"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ff7e4c0616966425fb339b9acf29b1ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 82433,
            "upload_time": "2023-05-12T15:28:57",
            "upload_time_iso_8601": "2023-05-12T15:28:57.208986Z",
            "url": "https://files.pythonhosted.org/packages/1b/43/a14660a684cb8cb849a8bc8e3a23daed7bd5dad7a1c1ea5d5daa644f4f58/hatch_showcase-0.5.0-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2f8bc1ef7df3364b1296abdf2f15ef8a5359ab85108287251a11f9218b3f7e31",
                "md5": "f5c5f2062a6b979203138a6c99c19860",
                "sha256": "e25727aec00da1033f03e47f9e607492659729b4dc665f7a6279a6cbbb167231"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "f5c5f2062a6b979203138a6c99c19860",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 35626,
            "upload_time": "2023-05-12T15:28:58",
            "upload_time_iso_8601": "2023-05-12T15:28:58.435547Z",
            "url": "https://files.pythonhosted.org/packages/2f/8b/c1ef7df3364b1296abdf2f15ef8a5359ab85108287251a11f9218b3f7e31/hatch_showcase-0.5.0-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cf5e58974088db6a4db14e1637ff43d95cad589eac625f7618837dd86c6b67f0",
                "md5": "1b48c3b2908356192aa342d0192c858b",
                "sha256": "632405a47ad12e48c9f74e67d7252e44b49ce10e5962fb1f8830370b1fab064c"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1b48c3b2908356192aa342d0192c858b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 38782,
            "upload_time": "2023-05-12T15:28:59",
            "upload_time_iso_8601": "2023-05-12T15:28:59.411154Z",
            "url": "https://files.pythonhosted.org/packages/cf/5e/58974088db6a4db14e1637ff43d95cad589eac625f7618837dd86c6b67f0/hatch_showcase-0.5.0-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "be9644d88ed8d1a3916f0beccc92743d42c4ab08118f83295a40c010ac69adf6",
                "md5": "cc0e334e8778d5c69c085d823f62fe0b",
                "sha256": "4ecd119d236e8f7d26ee447284892eae15c26d3d08cf03e6ddf410b1e2fe6f12"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-cp38-cp38-macosx_10_16_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cc0e334e8778d5c69c085d823f62fe0b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 51982,
            "upload_time": "2023-05-12T15:29:00",
            "upload_time_iso_8601": "2023-05-12T15:29:00.838999Z",
            "url": "https://files.pythonhosted.org/packages/be/96/44d88ed8d1a3916f0beccc92743d42c4ab08118f83295a40c010ac69adf6/hatch_showcase-0.5.0-cp38-cp38-macosx_10_16_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e594833421aa2f1baa56ef1fb0f961933f79390258851f8d5aadb8507691b926",
                "md5": "5039532e57cd16088b717cb97318646a",
                "sha256": "7125704b2da41b88ba7ce40a6952a4d0377e498f3a3fa2a331e82c35e6459b2e"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5039532e57cd16088b717cb97318646a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 93360,
            "upload_time": "2023-05-12T15:29:02",
            "upload_time_iso_8601": "2023-05-12T15:29:02.191463Z",
            "url": "https://files.pythonhosted.org/packages/e5/94/833421aa2f1baa56ef1fb0f961933f79390258851f8d5aadb8507691b926/hatch_showcase-0.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8c1c4709ff5e8ae39b5919dcd1bf41ed18fcb752113a712e5295b40529f153d8",
                "md5": "37817d7d3c522bcdaea7f2000c1bbb60",
                "sha256": "acfcb23d269147a411445a5e32240247ab6856ffac51a215b5eb3d6c60b04877"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-cp38-cp38-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "37817d7d3c522bcdaea7f2000c1bbb60",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 94799,
            "upload_time": "2023-05-12T15:29:03",
            "upload_time_iso_8601": "2023-05-12T15:29:03.567980Z",
            "url": "https://files.pythonhosted.org/packages/8c/1c/4709ff5e8ae39b5919dcd1bf41ed18fcb752113a712e5295b40529f153d8/hatch_showcase-0.5.0-cp38-cp38-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d17f3d476159629cbf85baa77e1d30e1bf1edcb2fbbedf7eea42e24a39cfa610",
                "md5": "3864b4c29efdfd31caa9726c411710b6",
                "sha256": "7ca82acd90e4f5cb39713770f9710e37f5d7a21fa628ff529af92812baad3e86"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3864b4c29efdfd31caa9726c411710b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 93926,
            "upload_time": "2023-05-12T15:29:04",
            "upload_time_iso_8601": "2023-05-12T15:29:04.976509Z",
            "url": "https://files.pythonhosted.org/packages/d1/7f/3d476159629cbf85baa77e1d30e1bf1edcb2fbbedf7eea42e24a39cfa610/hatch_showcase-0.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cd96978153cb28c0f70c596c93b6d248ce4fb1573294349fb6f2d2cb34bc6889",
                "md5": "3458aa9ce2b8fd0fd3f3593163fa121a",
                "sha256": "ed99616cc2b1426792690efc9726e7c3f33492d317f338550dd6ab21e686b001"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3458aa9ce2b8fd0fd3f3593163fa121a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 88770,
            "upload_time": "2023-05-12T15:29:06",
            "upload_time_iso_8601": "2023-05-12T15:29:06.527909Z",
            "url": "https://files.pythonhosted.org/packages/cd/96/978153cb28c0f70c596c93b6d248ce4fb1573294349fb6f2d2cb34bc6889/hatch_showcase-0.5.0-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "14a70b8a75262a92f9ce33db4f32a4d12183504cdeebbd5c3b0bd45dd0c0a0d9",
                "md5": "fb3a6665b9f3c578d284e997daaebc6d",
                "sha256": "dfedfd33effcfa39b6ef03edc9c6bfadb4cae8b9430844534656d0fc214e35bf"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "fb3a6665b9f3c578d284e997daaebc6d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 92530,
            "upload_time": "2023-05-12T15:29:08",
            "upload_time_iso_8601": "2023-05-12T15:29:08.105263Z",
            "url": "https://files.pythonhosted.org/packages/14/a7/0b8a75262a92f9ce33db4f32a4d12183504cdeebbd5c3b0bd45dd0c0a0d9/hatch_showcase-0.5.0-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "610135ce1454954d47f9cf15113362698ff251b437269eba76b8957f82436ad4",
                "md5": "6488f381efe8d7499d0bc045535d7836",
                "sha256": "bed841bfbb6361a80dcad36732c0742d215b19750d686d8ee2aa1ea30956c636"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6488f381efe8d7499d0bc045535d7836",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 90593,
            "upload_time": "2023-05-12T15:29:09",
            "upload_time_iso_8601": "2023-05-12T15:29:09.190495Z",
            "url": "https://files.pythonhosted.org/packages/61/01/35ce1454954d47f9cf15113362698ff251b437269eba76b8957f82436ad4/hatch_showcase-0.5.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "45358e8c57f2af412e30ae1299bce94141cb7f666c09e99dd894214120a569aa",
                "md5": "a764a92069c690e2445206dce30f70f1",
                "sha256": "933491fda7c38603affa0337c09eafc920e05b3f80234d0b0eb194e93c0f069d"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "a764a92069c690e2445206dce30f70f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 35656,
            "upload_time": "2023-05-12T15:29:10",
            "upload_time_iso_8601": "2023-05-12T15:29:10.533492Z",
            "url": "https://files.pythonhosted.org/packages/45/35/8e8c57f2af412e30ae1299bce94141cb7f666c09e99dd894214120a569aa/hatch_showcase-0.5.0-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8e085ee6a2c3acea9d2ff93317d780b2408b9ae9b97cb04f5ffc999121318e90",
                "md5": "5721337fbab4c1e84eec4565ec95b3d9",
                "sha256": "da27f6bef830f30838a3418594f84d9d3e3b08643db6c3a86688fbf3eecc87d9"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5721337fbab4c1e84eec4565ec95b3d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 38773,
            "upload_time": "2023-05-12T15:29:11",
            "upload_time_iso_8601": "2023-05-12T15:29:11.542027Z",
            "url": "https://files.pythonhosted.org/packages/8e/08/5ee6a2c3acea9d2ff93317d780b2408b9ae9b97cb04f5ffc999121318e90/hatch_showcase-0.5.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5595a8e860aad3a6c40fdb560fa3ddd4294b13e2bda07ffb26dda091c6dbff73",
                "md5": "46cff070d7f0b7d2db03181a89280da8",
                "sha256": "cb4184e43aa30788e9e88357373c8d31fc188f9dfe9d84e99df608108712f3ef"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-cp39-cp39-macosx_10_16_x86_64.whl",
            "has_sig": false,
            "md5_digest": "46cff070d7f0b7d2db03181a89280da8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 52789,
            "upload_time": "2023-05-12T15:29:12",
            "upload_time_iso_8601": "2023-05-12T15:29:12.721392Z",
            "url": "https://files.pythonhosted.org/packages/55/95/a8e860aad3a6c40fdb560fa3ddd4294b13e2bda07ffb26dda091c6dbff73/hatch_showcase-0.5.0-cp39-cp39-macosx_10_16_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e1b64fe198f9f1a02cf64ecff97363c3e4ed6b1bd12bb2a652eb3e9a337eca65",
                "md5": "5a2929d79762c2d8fe15f528947cfc2a",
                "sha256": "9ca2facaaa51ca4fe12e166f600689d2ff181ffc4529c37363018968c95d834d"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5a2929d79762c2d8fe15f528947cfc2a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 95723,
            "upload_time": "2023-05-12T15:29:13",
            "upload_time_iso_8601": "2023-05-12T15:29:13.842695Z",
            "url": "https://files.pythonhosted.org/packages/e1/b6/4fe198f9f1a02cf64ecff97363c3e4ed6b1bd12bb2a652eb3e9a337eca65/hatch_showcase-0.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d703f92a15012b33486c2ff154451a4486f0f1e5ea50c4d50f8582530a0a5a90",
                "md5": "1da0935d7098dfd9273356c3dcc45bf6",
                "sha256": "a3b30dc7b23118be60dfe417ccefff269f9a27adc02c82d7326e95b22f01d414"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-cp39-cp39-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "1da0935d7098dfd9273356c3dcc45bf6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 96698,
            "upload_time": "2023-05-12T15:29:15",
            "upload_time_iso_8601": "2023-05-12T15:29:15.154859Z",
            "url": "https://files.pythonhosted.org/packages/d7/03/f92a15012b33486c2ff154451a4486f0f1e5ea50c4d50f8582530a0a5a90/hatch_showcase-0.5.0-cp39-cp39-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6527162627b26fef02ea3b4edb9d3dfcbae704ad12d673c1d6419649abb44854",
                "md5": "9e39c871ebe1c973745a4d09560a3af3",
                "sha256": "696b00fe788a61fbece3b8ca4009da51817bd75cc059b8be9f64ff795936f5d6"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9e39c871ebe1c973745a4d09560a3af3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 95447,
            "upload_time": "2023-05-12T15:29:16",
            "upload_time_iso_8601": "2023-05-12T15:29:16.269102Z",
            "url": "https://files.pythonhosted.org/packages/65/27/162627b26fef02ea3b4edb9d3dfcbae704ad12d673c1d6419649abb44854/hatch_showcase-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9f7504fd3303d84f9e90405b2f651bab14dfe2d8da5ebb66bb67c4a43961a305",
                "md5": "bb73f5c7b1e80601ef6079b254672da1",
                "sha256": "d057eab5b75656da87efcce73b57b5aa20e0a8e8b263bda6d4270be918aac809"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "bb73f5c7b1e80601ef6079b254672da1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 90848,
            "upload_time": "2023-05-12T15:29:17",
            "upload_time_iso_8601": "2023-05-12T15:29:17.378723Z",
            "url": "https://files.pythonhosted.org/packages/9f/75/04fd3303d84f9e90405b2f651bab14dfe2d8da5ebb66bb67c4a43961a305/hatch_showcase-0.5.0-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "983352d96a45800d21746bf6d93e16511c1401c4cead530a51ccb329e6b5e754",
                "md5": "4a7177d751dc53dc7f44b7f0e8fb64dc",
                "sha256": "a2f188518ec9fe0929318195766ac87bc2d63dee9d18fbeeb4e2fb1e9d61d13f"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "4a7177d751dc53dc7f44b7f0e8fb64dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 94051,
            "upload_time": "2023-05-12T15:29:18",
            "upload_time_iso_8601": "2023-05-12T15:29:18.490250Z",
            "url": "https://files.pythonhosted.org/packages/98/33/52d96a45800d21746bf6d93e16511c1401c4cead530a51ccb329e6b5e754/hatch_showcase-0.5.0-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "897ed14a2e3e2f81f07ac0b21f774254497b720e949b603aa9c49400fd98cca8",
                "md5": "d2fc8491ef0738080fdfe4e201982b75",
                "sha256": "d9a3d12d721779258803bd61b661c32bef1b20dc4eaf8880ab19315a47410c21"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d2fc8491ef0738080fdfe4e201982b75",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 91959,
            "upload_time": "2023-05-12T15:29:20",
            "upload_time_iso_8601": "2023-05-12T15:29:20.054356Z",
            "url": "https://files.pythonhosted.org/packages/89/7e/d14a2e3e2f81f07ac0b21f774254497b720e949b603aa9c49400fd98cca8/hatch_showcase-0.5.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a44846b71ec2488636142bc554c7f45a18b2aed94c0a8fc6384424cb88b8939b",
                "md5": "0b71eea74b63c4479e5d83040523997d",
                "sha256": "84d40f47f0faf030da91067d77cedd30eb2e91b4d3f6a2d6946206dc7d41941d"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "0b71eea74b63c4479e5d83040523997d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 35785,
            "upload_time": "2023-05-12T15:29:21",
            "upload_time_iso_8601": "2023-05-12T15:29:21.136031Z",
            "url": "https://files.pythonhosted.org/packages/a4/48/46b71ec2488636142bc554c7f45a18b2aed94c0a8fc6384424cb88b8939b/hatch_showcase-0.5.0-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "997ae4c3f5e882efb8bc804f83c62bb479c8cc190b47ccede4367d4ae1af1f8f",
                "md5": "0b9ebfbba54dd4d4fe6b949ae4dca9d1",
                "sha256": "f01a5b6a9598f0995db4d3df04ae831fbd3acedbc75083c1475a85f1678bf4fb"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0b9ebfbba54dd4d4fe6b949ae4dca9d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 38943,
            "upload_time": "2023-05-12T15:29:22",
            "upload_time_iso_8601": "2023-05-12T15:29:22.678707Z",
            "url": "https://files.pythonhosted.org/packages/99/7a/e4c3f5e882efb8bc804f83c62bb479c8cc190b47ccede4367d4ae1af1f8f/hatch_showcase-0.5.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e044b1aa3b4b6df4ce9d6f87afe63f569df3452371c3ed165e52f3497d6db477",
                "md5": "cd400b0ff4c6711fdd0201d628de0022",
                "sha256": "1e53a400c737432c23112a5e2e06807f0659faa37bee8081ca09c899a2741efc"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "cd400b0ff4c6711fdd0201d628de0022",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 4995,
            "upload_time": "2023-05-12T15:29:23",
            "upload_time_iso_8601": "2023-05-12T15:29:23.706225Z",
            "url": "https://files.pythonhosted.org/packages/e0/44/b1aa3b4b6df4ce9d6f87afe63f569df3452371c3ed165e52f3497d6db477/hatch_showcase-0.5.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "37f665ddbe7b652767696c914cdeefffcb116a73033e889df3ee568bc4a4968f",
                "md5": "eadcd3c727cc810bbb88d8eb31f768c6",
                "sha256": "4bf4554ccc7e9595662840d1b5f9006035d2a9352d03dd1aafac2e9835ba4154"
            },
            "downloads": -1,
            "filename": "hatch_showcase-0.5.0.tar.gz",
            "has_sig": false,
            "md5_digest": "eadcd3c727cc810bbb88d8eb31f768c6",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 5209,
            "upload_time": "2023-05-12T15:29:24",
            "upload_time_iso_8601": "2023-05-12T15:29:24.848847Z",
            "url": "https://files.pythonhosted.org/packages/37/f6/65ddbe7b652767696c914cdeefffcb116a73033e889df3ee568bc4a4968f/hatch_showcase-0.5.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-05-12 15:29:24",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "sponsors",
    "github_project": "ofek",
    "github_not_found": true,
    "lcname": "hatch-showcase"
}
        
Elapsed time: 0.06560s