pyradiomics-fix


Namepyradiomics-fix JSON
Version 3.0.1.dev4 PyPI version JSON
download
home_pagehttp://github.com/Radiomics/pyradiomics#readme
SummaryRadiomics features library for python
upload_time2022-12-19 19:22:49
maintainer
docs_urlNone
authorpyradiomics community
requires_python
licenseBSD License
keywords radiomics cancerimaging medicalresearch computationalimaging
VCS
bugtrack_url
requirements numpy SimpleITK PyWavelets pykwalify six
Travis-CI
coveralls test coverage No coveralls.
            # pyradiomics v3.0.1

## Build Status

| Linux                          | macOS                         | Windows                       |
|--------------------------------|-------------------------------|-------------------------------|
| [![][circleci]][circleci-lnk]  | [![][travisci]][travisci-lnk] | [![][appveyor]][appveyor-lnk] |


[appveyor]: https://ci.appveyor.com/api/projects/status/tw69xbbeyluk7fl7/branch/master?svg=true
[appveyor-lnk]: https://ci.appveyor.com/project/Radiomics/pyradiomics/branch/master

[circleci]: https://circleci.com/gh/Radiomics/pyradiomics.svg?style=svg&circle-token=a4748cf0de5fad2c12bc93a485282378551c3584
[circleci-lnk]: https://circleci.com/gh/Radiomics/pyradiomics

[travisci]: https://travis-ci.org/Radiomics/pyradiomics.svg?branch=master
[travisci-lnk]: https://travis-ci.org/Radiomics/pyradiomics

## Radiomics feature extraction in Python
This is an open-source python package for the extraction of Radiomics features from medical imaging.

With this package we aim to establish a reference standard for Radiomic Analysis, and provide a tested and maintained
open-source platform for easy and reproducible Radiomic Feature extraction. By doing so, we hope to increase awareness
of radiomic capabilities and expand the community.

The platform supports both the feature extraction in 2D and 3D and can be used to calculate single values per feature
for a region of interest ("segment-based") or to generate feature maps ("voxel-based"). 

**Not intended for clinical use.**

**If you publish any work which uses this package, please cite the following publication:**
*van Griethuysen, J. J. M., Fedorov, A., Parmar, C., Hosny, A., Aucoin, N., Narayan, V., Beets-Tan, R. G. H.,
Fillion-Robin, J. C., Pieper, S.,  Aerts, H. J. W. L. (2017). Computational Radiomics System to Decode the Radiographic
Phenotype. Cancer Research, 77(21), e104–e107. https://doi.org/10.1158/0008-5472.CAN-17-0339*

### Join the Community!

Please join the [Radiomics community section of the 3D Slicer Discourse](https://discourse.slicer.org/c/community/radiomics/23).

### Feature Classes
Currently supports the following feature classes:

 - First Order Statistics
 - Shape-based (2D and 3D)
 - Gray Level Cooccurence Matrix (GLCM)
 - Gray Level Run Length Matrix (GLRLM)
 - Gray Level Size Zone Matrix (GLSZM)
 - Gray Level Dependece Matrix (GLDM)
 - Neighboring Gray Tone Difference Matrix (NGTDM)

### Filter Classes
Aside from the feature classes, there are also some built-in optional filters:

- Laplacian of Gaussian (LoG, based on SimpleITK functionality)
- Wavelet (using the PyWavelets package)
- Square
- Square Root
- Logarithm
- Exponential
- Gradient (Magnitude)
- Local Binary Pattern (LBP) 2D / 3D

### Supporting reproducible extraction
Aside from calculating features, the pyradiomics package includes provenance information in the
output. This information contains information on used image and mask, as well as applied settings
and filters, thereby enabling fully reproducible feature extraction.

### Documentation
For more information, see the sphinx generated documentation available [here](http://pyradiomics.readthedocs.io/).

Alternatively, you can generate the documentation by checking out the master branch and running from the root directory:

    python setup.py build_sphinx

The documentation can then be viewed in a browser by opening `PACKAGE_ROOT\build\sphinx\html\index.html`. 

Furthermore, an instruction video is available [here](http://radiomics.io/pyradiomics.html).

### Installation
PyRadiomics is OS independent and compatible with Python >= 3.5. Pre-built binaries are available on
PyPi and Conda. To install PyRadiomics, ensure you have python
installed and run:

    `python -m pip install pyradiomics`

Detailed installation instructions, as well as instructions for building PyRadiomics from source, are available in the 
[documentation](http://pyradiomics.readthedocs.io/en/latest/installation.html).

### Docker
PyRadiomics also supports [Dockers](https://www.docker.com/).  Currently, 2 dockers are available:

The first one is a [Jupyter notebook](http://jupyter.org/) with PyRadiomics pre-installed with example Notebooks. 

To get the Docker:

    docker pull radiomics/pyradiomics:latest

The `radiomics/notebook` Docker has an exposed volume (`/data`) that can be mapped to the host system directory.  For example, to mount the current directory:

    docker run --rm -it --publish 8888:8888 -v `pwd`:/data radiomics/notebook

or for a less secure notebook, skip the randomly generated token

    docker run --rm -it --publish 8888:8888 -v `pwd`:/data radiomics/notebook start-notebook.sh --NotebookApp.token=''

and open the local webpage at http://localhost:8888/ with the current directory at http://localhost:8888/tree/data.

The second is a docker which exposes the PyRadiomics CLI interface. To get the CLI-Docker:

    docker pull radiomics/pyradiomics:CLI

You can then use the PyRadiomics CLI as follows:

    docker run radiomics/pyradiomics:CLI --help

For more information on using docker, see
[here](https://pyradiomics.readthedocs.io/en/latest/installation.html#use-pyradiomics-docker)

### Usage
PyRadiomics can be easily used in a Python script through the `featureextractor`
module. Furthermore, PyRadiomics provides a commandline script, `pyradiomics`, for both single image extraction and 
batchprocessing. Finally, a convenient front-end interface is provided as the 'Radiomics'
extension for 3D Slicer, available [here](https://github.com/Radiomics/SlicerRadiomics).

### 3rd-party packages used in pyradiomics:
 - SimpleITK (Image loading and preprocessing)
 - numpy (Feature calculation)
 - PyWavelets (Wavelet filter)
 - pykwalify (Enabling yaml parameters file checking)
 - six (Python 3 Compatibility)
 - scipy (Only for LBP filter, install separately to enable this filter)
 - scikit-image (Only for LBP filter, install separately to enable this filter)
 - trimesh (Only for LBP filter, install separately to enable this filter)

See also the [requirements file](requirements.txt).

### 3D Slicer
PyRadiomics is also available as an [extension](https://github.com/Radiomics/SlicerRadiomics) to [3D Slicer](slicer.org). 
Download and install the 3D slicer [nightly build](http://download.slicer.org/), the extension is then available in the
extension manager under "SlicerRadiomics".

### License
This package is covered by the open source [3-clause BSD License](LICENSE.txt).

### Developers
 - [Joost van Griethuysen](https://github.com/JoostJM)<sup>1,3,4</sup>
 - [Andriy Fedorov](https://github.com/fedorov)<sup>2</sup>
 - [Nicole Aucoin](https://github.com/naucoin)<sup>2</sup>
 - [Jean-Christophe Fillion-Robin](https://github.com/jcfr)<sup>5</sup>
 - [Ahmed Hosny](https://github.com/ahmedhosny)<sup>1</sup>
 - [Steve Pieper](https://github.com/pieper)<sup>6</sup>
 - [Hugo Aerts (PI)](https://github.com/hugoaerts)<sup>1,2</sup>
 
<sup>1</sup>Department of Radiation Oncology, Dana-Farber Cancer Institute, Brigham and Women's Hospital, Harvard Medical School, Boston, MA,
<sup>2</sup>Department of Radiology, Brigham and Women's Hospital, Harvard Medical School, Boston, MA,
<sup>3</sup>Department of Radiology, Netherlands Cancer Institute, Amsterdam, The Netherlands, 
<sup>4</sup>GROW-School for Oncology and Developmental Biology, Maastricht University Medical Center, Maastricht, The Netherlands,
<sup>5</sup>Kitware,
<sup>6</sup>Isomics

### Contact
We are happy to help you with any questions. Please contact us on the [Radiomics community section of the 3D Slicer Discourse](https://discourse.slicer.org/c/community/radiomics/23).

We welcome contributions to PyRadiomics. Please read the [contributing guidelines](CONTRIBUTING.rst) on how to
contribute to PyRadiomics.

**This work was supported in part by the US National Cancer Institute grants: 
U24CA194354 - QUANTITATIVE RADIOMICS SYSTEM DECODING THE TUMOR PHENOTYPE and U01CA190234 - TUMOR GENOTYPE AND RADIOMIC PHENOTYPE IN LUNG CANCER**

            

Raw data

            {
    "_id": null,
    "home_page": "http://github.com/Radiomics/pyradiomics#readme",
    "name": "pyradiomics-fix",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "radiomics cancerimaging medicalresearch computationalimaging",
    "author": "pyradiomics community",
    "author_email": "pyradiomics@googlegroups.com",
    "download_url": "https://files.pythonhosted.org/packages/47/4d/63406c6341164ceab3c5e7a563984776b65f850f94f673f8a35593fa8b05/pyradiomics-fix-3.0.1.dev4.tar.gz",
    "platform": null,
    "description": "# pyradiomics v3.0.1\n\n## Build Status\n\n| Linux                          | macOS                         | Windows                       |\n|--------------------------------|-------------------------------|-------------------------------|\n| [![][circleci]][circleci-lnk]  | [![][travisci]][travisci-lnk] | [![][appveyor]][appveyor-lnk] |\n\n\n[appveyor]: https://ci.appveyor.com/api/projects/status/tw69xbbeyluk7fl7/branch/master?svg=true\n[appveyor-lnk]: https://ci.appveyor.com/project/Radiomics/pyradiomics/branch/master\n\n[circleci]: https://circleci.com/gh/Radiomics/pyradiomics.svg?style=svg&circle-token=a4748cf0de5fad2c12bc93a485282378551c3584\n[circleci-lnk]: https://circleci.com/gh/Radiomics/pyradiomics\n\n[travisci]: https://travis-ci.org/Radiomics/pyradiomics.svg?branch=master\n[travisci-lnk]: https://travis-ci.org/Radiomics/pyradiomics\n\n## Radiomics feature extraction in Python\nThis is an open-source python package for the extraction of Radiomics features from medical imaging.\n\nWith this package we aim to establish a reference standard for Radiomic Analysis, and provide a tested and maintained\nopen-source platform for easy and reproducible Radiomic Feature extraction. By doing so, we hope to increase awareness\nof radiomic capabilities and expand the community.\n\nThe platform supports both the feature extraction in 2D and 3D and can be used to calculate single values per feature\nfor a region of interest (\"segment-based\") or to generate feature maps (\"voxel-based\"). \n\n**Not intended for clinical use.**\n\n**If you publish any work which uses this package, please cite the following publication:**\n*van Griethuysen, J. J. M., Fedorov, A., Parmar, C., Hosny, A., Aucoin, N., Narayan, V., Beets-Tan, R. G. H.,\nFillion-Robin, J. C., Pieper, S.,  Aerts, H. J. W. L. (2017). Computational Radiomics System to Decode the Radiographic\nPhenotype. Cancer Research, 77(21), e104\u2013e107. https://doi.org/10.1158/0008-5472.CAN-17-0339*\n\n### Join the Community!\n\nPlease join the [Radiomics community section of the 3D Slicer Discourse](https://discourse.slicer.org/c/community/radiomics/23).\n\n### Feature Classes\nCurrently supports the following feature classes:\n\n - First Order Statistics\n - Shape-based (2D and 3D)\n - Gray Level Cooccurence Matrix (GLCM)\n - Gray Level Run Length Matrix (GLRLM)\n - Gray Level Size Zone Matrix (GLSZM)\n - Gray Level Dependece Matrix (GLDM)\n - Neighboring Gray Tone Difference Matrix (NGTDM)\n\n### Filter Classes\nAside from the feature classes, there are also some built-in optional filters:\n\n- Laplacian of Gaussian (LoG, based on SimpleITK functionality)\n- Wavelet (using the PyWavelets package)\n- Square\n- Square Root\n- Logarithm\n- Exponential\n- Gradient (Magnitude)\n- Local Binary Pattern (LBP) 2D / 3D\n\n### Supporting reproducible extraction\nAside from calculating features, the pyradiomics package includes provenance information in the\noutput. This information contains information on used image and mask, as well as applied settings\nand filters, thereby enabling fully reproducible feature extraction.\n\n### Documentation\nFor more information, see the sphinx generated documentation available [here](http://pyradiomics.readthedocs.io/).\n\nAlternatively, you can generate the documentation by checking out the master branch and running from the root directory:\n\n    python setup.py build_sphinx\n\nThe documentation can then be viewed in a browser by opening `PACKAGE_ROOT\\build\\sphinx\\html\\index.html`. \n\nFurthermore, an instruction video is available [here](http://radiomics.io/pyradiomics.html).\n\n### Installation\nPyRadiomics is OS independent and compatible with Python >= 3.5. Pre-built binaries are available on\nPyPi and Conda. To install PyRadiomics, ensure you have python\ninstalled and run:\n\n    `python -m pip install pyradiomics`\n\nDetailed installation instructions, as well as instructions for building PyRadiomics from source, are available in the \n[documentation](http://pyradiomics.readthedocs.io/en/latest/installation.html).\n\n### Docker\nPyRadiomics also supports [Dockers](https://www.docker.com/).  Currently, 2 dockers are available:\n\nThe first one is a [Jupyter notebook](http://jupyter.org/) with PyRadiomics pre-installed with example Notebooks. \n\nTo get the Docker:\n\n    docker pull radiomics/pyradiomics:latest\n\nThe `radiomics/notebook` Docker has an exposed volume (`/data`) that can be mapped to the host system directory.  For example, to mount the current directory:\n\n    docker run --rm -it --publish 8888:8888 -v `pwd`:/data radiomics/notebook\n\nor for a less secure notebook, skip the randomly generated token\n\n    docker run --rm -it --publish 8888:8888 -v `pwd`:/data radiomics/notebook start-notebook.sh --NotebookApp.token=''\n\nand open the local webpage at http://localhost:8888/ with the current directory at http://localhost:8888/tree/data.\n\nThe second is a docker which exposes the PyRadiomics CLI interface. To get the CLI-Docker:\n\n    docker pull radiomics/pyradiomics:CLI\n\nYou can then use the PyRadiomics CLI as follows:\n\n    docker run radiomics/pyradiomics:CLI --help\n\nFor more information on using docker, see\n[here](https://pyradiomics.readthedocs.io/en/latest/installation.html#use-pyradiomics-docker)\n\n### Usage\nPyRadiomics can be easily used in a Python script through the `featureextractor`\nmodule. Furthermore, PyRadiomics provides a commandline script, `pyradiomics`, for both single image extraction and \nbatchprocessing. Finally, a convenient front-end interface is provided as the 'Radiomics'\nextension for 3D Slicer, available [here](https://github.com/Radiomics/SlicerRadiomics).\n\n### 3rd-party packages used in pyradiomics:\n - SimpleITK (Image loading and preprocessing)\n - numpy (Feature calculation)\n - PyWavelets (Wavelet filter)\n - pykwalify (Enabling yaml parameters file checking)\n - six (Python 3 Compatibility)\n - scipy (Only for LBP filter, install separately to enable this filter)\n - scikit-image (Only for LBP filter, install separately to enable this filter)\n - trimesh (Only for LBP filter, install separately to enable this filter)\n\nSee also the [requirements file](requirements.txt).\n\n### 3D Slicer\nPyRadiomics is also available as an [extension](https://github.com/Radiomics/SlicerRadiomics) to [3D Slicer](slicer.org). \nDownload and install the 3D slicer [nightly build](http://download.slicer.org/), the extension is then available in the\nextension manager under \"SlicerRadiomics\".\n\n### License\nThis package is covered by the open source [3-clause BSD License](LICENSE.txt).\n\n### Developers\n - [Joost van Griethuysen](https://github.com/JoostJM)<sup>1,3,4</sup>\n - [Andriy Fedorov](https://github.com/fedorov)<sup>2</sup>\n - [Nicole Aucoin](https://github.com/naucoin)<sup>2</sup>\n - [Jean-Christophe Fillion-Robin](https://github.com/jcfr)<sup>5</sup>\n - [Ahmed Hosny](https://github.com/ahmedhosny)<sup>1</sup>\n - [Steve Pieper](https://github.com/pieper)<sup>6</sup>\n - [Hugo Aerts (PI)](https://github.com/hugoaerts)<sup>1,2</sup>\n \n<sup>1</sup>Department of Radiation Oncology, Dana-Farber Cancer Institute, Brigham and Women's Hospital, Harvard Medical School, Boston, MA,\n<sup>2</sup>Department of Radiology, Brigham and Women's Hospital, Harvard Medical School, Boston, MA,\n<sup>3</sup>Department of Radiology, Netherlands Cancer Institute, Amsterdam, The Netherlands, \n<sup>4</sup>GROW-School for Oncology and Developmental Biology, Maastricht University Medical Center, Maastricht, The Netherlands,\n<sup>5</sup>Kitware,\n<sup>6</sup>Isomics\n\n### Contact\nWe are happy to help you with any questions. Please contact us on the [Radiomics community section of the 3D Slicer Discourse](https://discourse.slicer.org/c/community/radiomics/23).\n\nWe welcome contributions to PyRadiomics. Please read the [contributing guidelines](CONTRIBUTING.rst) on how to\ncontribute to PyRadiomics.\n\n**This work was supported in part by the US National Cancer Institute grants: \nU24CA194354 - QUANTITATIVE RADIOMICS SYSTEM DECODING THE TUMOR PHENOTYPE and U01CA190234 - TUMOR GENOTYPE AND RADIOMIC PHENOTYPE IN LUNG CANCER**\n",
    "bugtrack_url": null,
    "license": "BSD License",
    "summary": "Radiomics features library for python",
    "version": "3.0.1.dev4",
    "split_keywords": [
        "radiomics",
        "cancerimaging",
        "medicalresearch",
        "computationalimaging"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "8bb1fc367e5ff8fd6a940525e536d6a0",
                "sha256": "bdd09ec169cc6bb86b0ce62be2e3276c6f8263d89fceb826c75b9963b2514ba1"
            },
            "downloads": -1,
            "filename": "pyradiomics_fix-3.0.1.dev4-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8bb1fc367e5ff8fd6a940525e536d6a0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 122475,
            "upload_time": "2022-12-19T19:22:29",
            "upload_time_iso_8601": "2022-12-19T19:22:29.901701Z",
            "url": "https://files.pythonhosted.org/packages/4b/39/42fb2d586f749e75fc54b932115dd2c8350bf3b47ef6388fd55029c57ca3/pyradiomics_fix-3.0.1.dev4-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "34ad829a252dd6f0f403548466af5085",
                "sha256": "42fa5ca8e40be870c9140a0b8e1cd45fd4fa120fd371e0c1196e858dca83362b"
            },
            "downloads": -1,
            "filename": "pyradiomics_fix-3.0.1.dev4-cp310-cp310-macosx_12_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "34ad829a252dd6f0f403548466af5085",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 122453,
            "upload_time": "2022-12-19T19:22:31",
            "upload_time_iso_8601": "2022-12-19T19:22:31.971621Z",
            "url": "https://files.pythonhosted.org/packages/c5/20/544575d6ca5e92c713c17ead08781a63e5f008414f9ea02c1a1e78c1c1d1/pyradiomics_fix-3.0.1.dev4-cp310-cp310-macosx_12_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "68dab9cb9c479c3ed218ab53fb666451",
                "sha256": "c150c4cc7d94506dde4f3b6aae22983ae698254fe6ae1782a5195cd2fd15987b"
            },
            "downloads": -1,
            "filename": "pyradiomics_fix-3.0.1.dev4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "68dab9cb9c479c3ed218ab53fb666451",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 184157,
            "upload_time": "2022-12-19T19:22:33",
            "upload_time_iso_8601": "2022-12-19T19:22:33.672898Z",
            "url": "https://files.pythonhosted.org/packages/89/54/d577d31f0c19c03aa54602796c115e4d3737b963eeadbda45c832533b1cd/pyradiomics_fix-3.0.1.dev4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "a6ca7bda885e31e408602c024b763fff",
                "sha256": "fbe1ae6a3977a706610af67212300c63146110863ab528b09a814cb243c2dae6"
            },
            "downloads": -1,
            "filename": "pyradiomics_fix-3.0.1.dev4-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a6ca7bda885e31e408602c024b763fff",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 127189,
            "upload_time": "2022-12-19T19:22:35",
            "upload_time_iso_8601": "2022-12-19T19:22:35.713567Z",
            "url": "https://files.pythonhosted.org/packages/1a/f7/de112c5fd83da27edab701f0651534f56eca992e3bc7f28cde6bf207ec34/pyradiomics_fix-3.0.1.dev4-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "f6ed2b3e540c6dd605f39108fc938bfe",
                "sha256": "1078aa09e581f7bd96d90841aba94bef3b8c6cf1800233175df92aec9f64a9d8"
            },
            "downloads": -1,
            "filename": "pyradiomics_fix-3.0.1.dev4-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f6ed2b3e540c6dd605f39108fc938bfe",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 122455,
            "upload_time": "2022-12-19T19:22:37",
            "upload_time_iso_8601": "2022-12-19T19:22:37.550041Z",
            "url": "https://files.pythonhosted.org/packages/13/45/34f4886658afceac3f9385b9907fa6547e96a380ebd40e903efc5deb335e/pyradiomics_fix-3.0.1.dev4-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "deb17e4b84b280de23cbc897ae258f9d",
                "sha256": "35b36ca2d0690a9723d06a176abc366d2e53c66c7d576cdcc874ffe42b67e30b"
            },
            "downloads": -1,
            "filename": "pyradiomics_fix-3.0.1.dev4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "deb17e4b84b280de23cbc897ae258f9d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 183918,
            "upload_time": "2022-12-19T19:22:39",
            "upload_time_iso_8601": "2022-12-19T19:22:39.096221Z",
            "url": "https://files.pythonhosted.org/packages/d2/4f/d1007c880a9275aef11c2d48a09d1e47f175b2e94d44920e9a0391485a8f/pyradiomics_fix-3.0.1.dev4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "4ba3772d3a393f6ce2ebaad98f7bf921",
                "sha256": "745121ed5002f5a815ae92dbe72a4a973fdde561bc1aecf485469a65ce680c7b"
            },
            "downloads": -1,
            "filename": "pyradiomics_fix-3.0.1.dev4-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4ba3772d3a393f6ce2ebaad98f7bf921",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 127182,
            "upload_time": "2022-12-19T19:22:40",
            "upload_time_iso_8601": "2022-12-19T19:22:40.612153Z",
            "url": "https://files.pythonhosted.org/packages/d2/f5/9a0cfcfdb3b2641f294fe938c85d89b2bcf91e81e6f94f8cfbbc280c292b/pyradiomics_fix-3.0.1.dev4-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "796d20cde7f840bc223fb8f2c086b4cc",
                "sha256": "015f9fc58f79c01f1ded8ea4d45a10dbe3cab0fc77e454fbf5ccdad0e31c68da"
            },
            "downloads": -1,
            "filename": "pyradiomics-fix-3.0.1.dev4.tar.gz",
            "has_sig": false,
            "md5_digest": "796d20cde7f840bc223fb8f2c086b4cc",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 34452582,
            "upload_time": "2022-12-19T19:22:49",
            "upload_time_iso_8601": "2022-12-19T19:22:49.940738Z",
            "url": "https://files.pythonhosted.org/packages/47/4d/63406c6341164ceab3c5e7a563984776b65f850f94f673f8a35593fa8b05/pyradiomics-fix-3.0.1.dev4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-12-19 19:22:49",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "Radiomics",
    "github_project": "pyradiomics#readme",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": false,
    "circle": true,
    "appveyor": true,
    "requirements": [
        {
            "name": "numpy",
            "specs": [
                [
                    ">=",
                    "1.9.2"
                ]
            ]
        },
        {
            "name": "SimpleITK",
            "specs": [
                [
                    ">=",
                    "0.9.1"
                ]
            ]
        },
        {
            "name": "PyWavelets",
            "specs": [
                [
                    ">=",
                    "0.4.0"
                ]
            ]
        },
        {
            "name": "pykwalify",
            "specs": [
                [
                    ">=",
                    "1.6.0"
                ]
            ]
        },
        {
            "name": "six",
            "specs": [
                [
                    ">=",
                    "1.10.0"
                ]
            ]
        }
    ],
    "lcname": "pyradiomics-fix"
}
        
Elapsed time: 0.02162s