{ "info": { "author": "Pawel Markiewicz", "author_email": "p.markiewicz@ucl.ac.uk", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: GPU", "Environment :: GPU :: NVIDIA CUDA", "Intended Audience :: Education", "Intended Audience :: Healthcare Industry", "Intended Audience :: Science/Research", "License :: OSI Approved :: Apache Software License", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX :: Linux", "Programming Language :: C", "Programming Language :: C++", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Topic :: Scientific/Engineering :: Medical Science Apps." ], "description": "===========================================================\nNIPET: high-throughput Neuro-Image PET reconstruction\n===========================================================\n\n|Docs| |Version| |Downloads| |Py-Versions| |DOI| |Licence| |Tests|\n\nNIPET is a Python sub-package of NiftyPET_, offering high-throughput PET image reconstruction as well as image processing and analysis (``nimpa``: https://github.com/NiftyPET/NIMPA) for PET/MR imaging with high quantitative accuracy and precision. The software is written in CUDA C and embedded in Python C extensions.\n\n.. _NiftyPET: https://github.com/NiftyPET/NiftyPET\n\nThe scientific aspects of this software are covered in two open-access publications:\n\n* *NiftyPET: a High-throughput Software Platform for High Quantitative Accuracy and Precision PET Imaging and Analysis* Neuroinformatics (2018) 16:95. https://doi.org/10.1007/s12021-017-9352-y\n\n* *Rapid processing of PET list-mode data for efficient uncertainty estimation and data analysis* Physics in Medicine & Biology (2016). https://doi.org/10.1088/0031-9155/61/13/N322\n\nAlthough, the two stand-alone and independent packages, ``nipet`` and ``nimpa``, are dedicated to brain imaging, they can equally well be used for whole body imaging. Strong emphasis is put on the data, which are acquired using positron emission tomography (PET) and magnetic resonance (MR), especially the hybrid and simultaneous PET/MR scanners.\n\nThis software platform and Python name-space *NiftyPET* covers the entire processing pipeline, from the raw list-mode (LM) PET data through to the final image statistic of interest (e.g., regional SUV), including LM bootstrapping and multiple reconstructions to facilitate voxel-wise estimation of uncertainties.\n\nIn order to facilitate all the functionality, *NiftyPET* relies on third-party software for image conversion from DICOM to NIfTI (dcm2niix) and image registration (NiftyReg). The additional software is installed automatically to a user specified location.\n\n**Documentation with installation manual and tutorials**: https://niftypet.readthedocs.io/\n\nQuick Install\n~~~~~~~~~~~~~\n\nNote that installation prompts for setting the path to ``NiftyPET_tools`` and\nhardware attenuation maps. This can be avoided by setting the environment\nvariables ``PATHTOOLS`` and ``HMUDIR``, respectively.\nIt's also recommended (but not required) to use `conda`.\n\n.. code:: sh\n\n # optional (Linux syntax) to avoid prompts\n export PATHTOOLS=$HOME/NiftyPET_tools\n export HMUDIR=$HOME/mmr_hardwareumaps\n # cross-platform install\n conda install -c conda-forge python=3 \\\n ipykernel numpy scipy scikit-image matplotlib ipywidgets\n pip install \"nipet>=2\"\n\nExternal CMake Projects\n~~~~~~~~~~~~~~~~~~~~~~~\n\nThe raw C/CUDA libraries may be included in external projects using ``cmake``.\nSimply build the project and use ``find_package(NiftyPETnipet)``.\n\n.. code:: sh\n\n # print installation directory (after `pip install nipet`)...\n python -c \"from niftypet.nipet import cmake_prefix; print(cmake_prefix)\"\n\n # ... or build & install directly with cmake\n mkdir build && cd build\n cmake ../niftypet && cmake --build . && cmake --install . --prefix /my/install/dir\n\nAt this point any external project may include NIPET as follows\n(Once setting ``-DCMAKE_PREFIX_DIR=``):\n\n.. code:: cmake\n\n cmake_minimum_required(VERSION 3.3 FATAL_ERROR)\n project(myproj)\n find_package(NiftyPETnipet COMPONENTS mmr_auxe mmr_lmproc petprj nifty_scatter REQUIRED)\n add_executable(myexe ...)\n target_link_libraries(myexe PRIVATE\n NiftyPET::mmr_auxe NiftyPET::mmr_lmproc NiftyPET::petprj NiftyPET::nifty_scatter)\n\nLicence\n~~~~~~~\n\n|Licence| |DOI|\n\nCopyright 2018-21\n\n- `Pawel J. Markiewicz `__ @ University College London\n- `Casper O. da Costa-Luis `__ @ King's College London\n- `Contributors `__\n\n.. |Docs| image:: https://readthedocs.org/projects/niftypet/badge/?version=latest\n :target: https://niftypet.readthedocs.io/en/latest/?badge=latest\n.. |DOI| image:: https://zenodo.org/badge/DOI/10.5281/zenodo.4417679.svg\n :target: https://doi.org/10.5281/zenodo.4417679\n.. |Licence| image:: https://img.shields.io/pypi/l/nipet.svg?label=licence\n :target: https://github.com/NiftyPET/NIPET/blob/master/LICENCE\n.. |Tests| image:: https://img.shields.io/github/workflow/status/NiftyPET/NIPET/Test?logo=GitHub\n :target: https://github.com/NiftyPET/NIPET/actions\n.. |Downloads| image:: https://img.shields.io/pypi/dm/nipet.svg?logo=pypi&logoColor=white&label=PyPI%20downloads\n :target: https://pypi.org/project/nipet\n.. |Version| image:: https://img.shields.io/pypi/v/nipet.svg?logo=python&logoColor=white\n :target: https://github.com/NiftyPET/NIPET/releases\n.. |Py-Versions| image:: https://img.shields.io/pypi/pyversions/nipet.svg?logo=python&logoColor=white\n :target: https://pypi.org/project/nipet\n\n\n", "description_content_type": "text/x-rst", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/NiftyPET/NIPET", "keywords": "PET,image reconstruction,analysis", "license": "Apache 2.0", "maintainer": "Casper da Costa-Luis", "maintainer_email": "casper.dcl@physics.org", "name": "nipet", "package_url": "https://pypi.org/project/nipet/", "platform": "", "project_url": "https://pypi.org/project/nipet/", "project_urls": { "Changelog": "https://github.com/NiftyPET/NIPET/releases", "Documentation": "https://niftypet.readthedocs.io", "Homepage": "https://github.com/NiftyPET/NIPET" }, "release_url": "https://pypi.org/project/nipet/2.1.0/", "requires_dist": null, "requires_python": ">=3.6", "summary": "CUDA-accelerated Python utilities for high-throughput PET/MR image reconstruction and analysis", "version": "2.1.0", "yanked": false, "yanked_reason": null }, "last_serial": 11594171, "releases": { "1.0.18": [ { "comment_text": "", "digests": { "md5": "26ad563c55e50782fa016a49fcdf52f2", "sha256": "35880d7c1e2ea44f142cf2e1790d1b6db8beb1105681863a10c2cd9ba314d1c1" }, "downloads": -1, "filename": "nipet-1.0.18.tar.gz", "has_sig": false, "md5_digest": "26ad563c55e50782fa016a49fcdf52f2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1558931, "upload_time": "2018-10-31T18:21:14", "upload_time_iso_8601": "2018-10-31T18:21:14.999798Z", "url": "https://files.pythonhosted.org/packages/12/78/858cf76badaa5b2d181eb20a6c7c48ba49effadb1c9f633a7a07860a3b19/nipet-1.0.18.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "c49335f73200311a8c8003dbe5dda46d", "sha256": "ac7faa36e27721c1caf44f113fe5fd78e76dc438bc20f0a2edaff0a00eafb565" }, "downloads": -1, "filename": "nipet-1.1.0.tar.gz", "has_sig": false, "md5_digest": "c49335f73200311a8c8003dbe5dda46d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1561089, "upload_time": "2018-11-20T01:37:17", "upload_time_iso_8601": "2018-11-20T01:37:17.715938Z", "url": "https://files.pythonhosted.org/packages/7a/e4/6bd777f46414a0115a2c390f78bb09203ffbdad08a6065a366f3c0fee1c0/nipet-1.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "0658b532a2ab8d4e981549f265a20ca1", "sha256": "bc27ebfc5adeaa2c3005a8e33a65cd26546b6f6caac0abb034ffbb5f381ff354" }, "downloads": -1, "filename": "nipet-1.1.1.tar.gz", "has_sig": false, "md5_digest": "0658b532a2ab8d4e981549f265a20ca1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1561297, "upload_time": "2018-11-28T19:12:18", "upload_time_iso_8601": "2018-11-28T19:12:18.846778Z", "url": "https://files.pythonhosted.org/packages/c6/2a/7a9510f10722ee244062fc38d6b6920a0fcf4896bf5af26e56638c26097a/nipet-1.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.10": [ { "comment_text": "", "digests": { "md5": "41aee9217b41ae8cf1d0fa4c8d5ba2ba", "sha256": "0439b22a6cfdf1ca4983025079c96e7484e6385bc5892e9ff0f5af5c513b946b" }, "downloads": -1, "filename": "nipet-1.1.10.tar.gz", "has_sig": false, "md5_digest": "41aee9217b41ae8cf1d0fa4c8d5ba2ba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1562893, "upload_time": "2019-01-14T20:38:19", "upload_time_iso_8601": "2019-01-14T20:38:19.443012Z", "url": "https://files.pythonhosted.org/packages/47/01/ef9a26c5ea86037171f0647ce3998d4b4fe4d717b6ca5d83e45d96fa2745/nipet-1.1.10.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.11": [ { "comment_text": "", "digests": { "md5": "5cec6e6d449157893f154ba79346f3d2", "sha256": "fd8ead2eb1e88e660f5d71933860e28a453f025f27b4c36885cff780190a117d" }, "downloads": -1, "filename": "nipet-1.1.11.tar.gz", "has_sig": false, "md5_digest": "5cec6e6d449157893f154ba79346f3d2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1564602, "upload_time": "2019-03-13T18:00:59", "upload_time_iso_8601": "2019-03-13T18:00:59.556340Z", "url": "https://files.pythonhosted.org/packages/9c/b5/ea255ff5852e136c94101ea4897b3d8929cbdb0285e4f6e1c4b08fc9ce8f/nipet-1.1.11.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.12": [ { "comment_text": "", "digests": { "md5": "b037716b258043ce55189e8829a9d47b", "sha256": "3ee45ac02e863466bf547473f562bf15fa57573f63df5c218533501208033328" }, "downloads": -1, "filename": "nipet-1.1.12.tar.gz", "has_sig": false, "md5_digest": "b037716b258043ce55189e8829a9d47b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1586804, "upload_time": "2019-03-17T01:17:19", "upload_time_iso_8601": "2019-03-17T01:17:19.814952Z", "url": "https://files.pythonhosted.org/packages/51/98/94d2c9f05c648bef2cb6bdd4e550a2c1aa6d9f747c8326dbd80bfa898778/nipet-1.1.12.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.13": [ { "comment_text": "", "digests": { "md5": "3190784300cb22a5f248248006df2596", "sha256": "d8115e747e2d79e0208e84d39d84feaa073942013b0a9e69e4b647547756f4d5" }, "downloads": -1, "filename": "nipet-1.1.13.tar.gz", "has_sig": false, "md5_digest": "3190784300cb22a5f248248006df2596", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1587821, "upload_time": "2019-04-04T23:45:38", "upload_time_iso_8601": "2019-04-04T23:45:38.305319Z", "url": "https://files.pythonhosted.org/packages/7b/25/fe1a202660b8016867075fce064856f86592c7efa5b6dbfed3cc867ca686/nipet-1.1.13.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.14": [ { "comment_text": "", "digests": { "md5": "f6944129713bfde4b8bdb650ca7ec318", "sha256": "6f247041ba6be21e4b3ca670c83b83637308ef26c828ef84b406e17712ffadae" }, "downloads": -1, "filename": "nipet-1.1.14.tar.gz", "has_sig": false, "md5_digest": "f6944129713bfde4b8bdb650ca7ec318", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1588751, "upload_time": "2019-04-11T19:32:24", "upload_time_iso_8601": "2019-04-11T19:32:24.720941Z", "url": "https://files.pythonhosted.org/packages/12/af/9814c65681dba50c67e12588927eb5a71e8869b55171465202edfae505d3/nipet-1.1.14.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.15": [ { "comment_text": "", "digests": { "md5": "411bfd43c663ffb2b8fdefe0fcd5984a", "sha256": "35a776e468f9f3f44d88236301d9b04ca83308501d85a81900b22159c4d97493" }, "downloads": -1, "filename": "nipet-1.1.15.tar.gz", "has_sig": false, "md5_digest": "411bfd43c663ffb2b8fdefe0fcd5984a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1589323, "upload_time": "2019-04-11T21:36:48", "upload_time_iso_8601": "2019-04-11T21:36:48.342910Z", "url": "https://files.pythonhosted.org/packages/b2/b9/af92f49caebf901e63284c970d906ae09d89cdbde92c32c9dfadc8ec9ab8/nipet-1.1.15.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.16": [ { "comment_text": "", "digests": { "md5": "e03f2ec31ddf101ac93013e3c4414d05", "sha256": "2faf3e1bc71955c9c97a7eba435069901f51a493858e981a15c076f2c1faf1f4" }, "downloads": -1, "filename": "nipet-1.1.16.tar.gz", "has_sig": false, "md5_digest": "e03f2ec31ddf101ac93013e3c4414d05", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1589637, "upload_time": "2019-05-29T18:07:10", "upload_time_iso_8601": "2019-05-29T18:07:10.256949Z", "url": "https://files.pythonhosted.org/packages/4c/51/cecd2694da7db639110adbd191bfabb3c26b0c461f6caf07ca76adf63d5d/nipet-1.1.16.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.17": [ { "comment_text": "", "digests": { "md5": "a4dc885d2e7627018f8d6aacd7b38e13", "sha256": "fcfbb6d5b05869e19ba393907755bf11dcbc0b5bfe9cbb762c16873a26611bf8" }, "downloads": -1, "filename": "nipet-1.1.17.tar.gz", "has_sig": false, "md5_digest": "a4dc885d2e7627018f8d6aacd7b38e13", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1589855, "upload_time": "2019-07-19T14:33:16", "upload_time_iso_8601": "2019-07-19T14:33:16.545523Z", "url": "https://files.pythonhosted.org/packages/af/fe/603826c2ee6b33b7896185ef3cd33dd9030c20ff0f78731311291c151d0c/nipet-1.1.17.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.18": [ { "comment_text": "", "digests": { "md5": "963f7a6e5fd6ab8ff98c600dc2113f58", "sha256": "889f814118c2f20ab828b64cfb2ffa748d0b3f51c893bbb428253488b4d79f59" }, "downloads": -1, "filename": "nipet-1.1.18.tar.gz", "has_sig": false, "md5_digest": "963f7a6e5fd6ab8ff98c600dc2113f58", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1591173, "upload_time": "2019-10-22T18:08:40", "upload_time_iso_8601": "2019-10-22T18:08:40.716679Z", "url": "https://files.pythonhosted.org/packages/4a/b1/463dceb7d969b3801906417e11cec32dc371a3215a25049ddcd3c1e55194/nipet-1.1.18.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "6051d81c157c890cd5d53cf96f678cd1", "sha256": "19c6530e5184f7cd8af0776fc747a59336b06ffcb0aa156a30eec1063d54de7a" }, "downloads": -1, "filename": "nipet-1.1.2.tar.gz", "has_sig": false, "md5_digest": "6051d81c157c890cd5d53cf96f678cd1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1561325, "upload_time": "2018-12-03T19:31:59", "upload_time_iso_8601": "2018-12-03T19:31:59.554099Z", "url": "https://files.pythonhosted.org/packages/6a/b3/0c6eec27be45b0c0c4e19f5c7c20f58dc31c9e0dd24f3480b4645c72406d/nipet-1.1.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.20": [ { "comment_text": "", "digests": { "md5": "4c7287e241604234acb7150d31fc5859", "sha256": "62a9e478b708c9c24e50b80bafe915d933c792cc2114becc4ae3053a5fdc3f3d" }, "downloads": -1, "filename": "nipet-1.1.20.tar.gz", "has_sig": false, "md5_digest": "4c7287e241604234acb7150d31fc5859", "packagetype": "sdist", "python_version": "source", "requires_python": "<3.0.0", "size": 1584461, "upload_time": "2020-01-22T22:41:07", "upload_time_iso_8601": "2020-01-22T22:41:07.211220Z", "url": "https://files.pythonhosted.org/packages/fd/27/58f4c49edf946d76afdf4851b96ed4c5f34e56fd71e08b0f6245769a8ff1/nipet-1.1.20.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.21": [ { "comment_text": "", "digests": { "md5": "00822b30bc39a6d14bad66aeee09c58e", "sha256": "dd0d38e34c820f837fb45a08c755f29e3cad7081892a50d5e7236bf62cc10f76" }, "downloads": -1, "filename": "nipet-1.1.21.tar.gz", "has_sig": false, "md5_digest": "00822b30bc39a6d14bad66aeee09c58e", "packagetype": "sdist", "python_version": "source", "requires_python": "<3.0.0", "size": 1590476, "upload_time": "2020-01-31T16:45:33", "upload_time_iso_8601": "2020-01-31T16:45:33.710198Z", "url": "https://files.pythonhosted.org/packages/c9/6c/6cab866f390e5aded092a0ea964c6d679edaebb6309f758d77e5508b50e3/nipet-1.1.21.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.22": [ { "comment_text": "", "digests": { "md5": "497ffcadfbfc2337b2ce428d700c1887", "sha256": "21868b286187d9491a8035917bed5ecfb2a43c7ab33736397dab954458d3ca3d" }, "downloads": -1, "filename": "nipet-1.1.22.tar.gz", "has_sig": false, "md5_digest": "497ffcadfbfc2337b2ce428d700c1887", "packagetype": "sdist", "python_version": "source", "requires_python": "<3.0.0", "size": 1588013, "upload_time": "2020-06-23T11:54:43", "upload_time_iso_8601": "2020-06-23T11:54:43.754970Z", "url": "https://files.pythonhosted.org/packages/27/26/2ec1b82b6f730d77a3d38c195791e452022b0fe0665ef9180c7066b244bd/nipet-1.1.22.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "9ae2100841eb90900d5e999c98a5763b", "sha256": "0717e0021ac4709c69a3a65006be8bec2da4b25b5b9eda38b6d20daee2b5615b" }, "downloads": -1, "filename": "nipet-1.1.3.tar.gz", "has_sig": false, "md5_digest": "9ae2100841eb90900d5e999c98a5763b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1561384, "upload_time": "2018-12-05T18:01:44", "upload_time_iso_8601": "2018-12-05T18:01:44.947752Z", "url": "https://files.pythonhosted.org/packages/28/2b/269cfaadd0cdf08e0e83a8996c50ebd98ffec083a2c71a8ced27a722d5aa/nipet-1.1.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.4": [ { "comment_text": "", "digests": { "md5": "b134f96a774b2e3ce4fb348cd921cc9c", "sha256": "8cc724fa097ec62f8c964aa6e2e176e4e579bdcdac5295d328bd2bbda58c689d" }, "downloads": -1, "filename": "nipet-1.1.4.tar.gz", "has_sig": false, "md5_digest": "b134f96a774b2e3ce4fb348cd921cc9c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1561816, "upload_time": "2018-12-07T12:48:36", "upload_time_iso_8601": "2018-12-07T12:48:36.648039Z", "url": "https://files.pythonhosted.org/packages/10/21/0526203f4900707bf449b3e92853c39db63f4af0fe6559d9783195887219/nipet-1.1.4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.5": [ { "comment_text": "", "digests": { "md5": "e0538dbbd8ae8f3e5c9ffea050f0d20d", "sha256": "7f5c2ff93705f55b728658fa72f3ed849e7abc0e8de25684575ff7dd2a65ce10" }, "downloads": -1, "filename": "nipet-1.1.5.tar.gz", "has_sig": false, "md5_digest": "e0538dbbd8ae8f3e5c9ffea050f0d20d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1561942, "upload_time": "2018-12-17T01:10:06", "upload_time_iso_8601": "2018-12-17T01:10:06.758671Z", "url": "https://files.pythonhosted.org/packages/73/0c/939fdd85f2df61f63dd0c0e3a82705bf4031eb974c87ab9203b3812d91f1/nipet-1.1.5.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.6": [ { "comment_text": "", "digests": { "md5": "0877fd86885f527d56bf04e1f3566dae", "sha256": "47a1023f33a23009326036ab7985339a6f815662d7401ac4f6a9c44f9cb241c6" }, "downloads": -1, "filename": "nipet-1.1.6.tar.gz", "has_sig": false, "md5_digest": "0877fd86885f527d56bf04e1f3566dae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1562777, "upload_time": "2019-01-03T21:43:49", "upload_time_iso_8601": "2019-01-03T21:43:49.649060Z", "url": "https://files.pythonhosted.org/packages/fd/12/8700a68f8d98093ea1973df38fd119ef6d8fba6b97a020b7974a13b560d9/nipet-1.1.6.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.7": [ { "comment_text": "", "digests": { "md5": "eb9256a73548495a566c8e1fc8d921ef", "sha256": "ddad1c8b6d93b6f38ff839a989cb2765bf74ad9bc94198c042c201a77dfd9248" }, "downloads": -1, "filename": "nipet-1.1.7.tar.gz", "has_sig": false, "md5_digest": "eb9256a73548495a566c8e1fc8d921ef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1562876, "upload_time": "2019-01-05T00:43:35", "upload_time_iso_8601": "2019-01-05T00:43:35.803836Z", "url": "https://files.pythonhosted.org/packages/7b/80/904d2949607b826029fac39841d43dde8d7acc83fa4e26801219b72d4069/nipet-1.1.7.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.8": [ { "comment_text": "", "digests": { "md5": "ca70e3230cdb6c37b4a54bfecfe13249", "sha256": "8b9c64c718b77adc48cabd73fdab3b27b58e3fb55019c7e3cc7cfaaaafaf0dee" }, "downloads": -1, "filename": "nipet-1.1.8.tar.gz", "has_sig": false, "md5_digest": "ca70e3230cdb6c37b4a54bfecfe13249", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1562901, "upload_time": "2019-01-06T19:57:52", "upload_time_iso_8601": "2019-01-06T19:57:52.454322Z", "url": "https://files.pythonhosted.org/packages/d3/05/e14f629f1315338173c787445eb5a7a6fc7387aba06b09a1c4244841195c/nipet-1.1.8.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.9": [ { "comment_text": "", "digests": { "md5": "25cbc61148c047032e4661e9d311fb49", "sha256": "f52a13cd7104d2e21e7e1da4bea76a3342f065118a563aad6281e4256b0a01f7" }, "downloads": -1, "filename": "nipet-1.1.9.tar.gz", "has_sig": false, "md5_digest": "25cbc61148c047032e4661e9d311fb49", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1562878, "upload_time": "2019-01-08T22:25:33", "upload_time_iso_8601": "2019-01-08T22:25:33.018571Z", "url": "https://files.pythonhosted.org/packages/61/1c/b944cf20297dd9ebfbdbf8a822556ea01978434e0ecfe7618af4a4e4dd50/nipet-1.1.9.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "388b7ae548886fe334003f702325388a", "sha256": "abb38fc61962707bdd23a4d77b910b71dc2f706fc31a4fb9438ec592ab89c246" }, "downloads": -1, "filename": "nipet-2.0.0.tar.gz", "has_sig": true, "md5_digest": "388b7ae548886fe334003f702325388a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 169215, "upload_time": "2021-01-05T03:06:24", "upload_time_iso_8601": "2021-01-05T03:06:24.736791Z", "url": "https://files.pythonhosted.org/packages/97/8e/adb046dabbc6c185e3b55233cab9d00b467ad1b46dca7933e61609ba1968/nipet-2.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "e7e38b27eadba0aeb6d789931690d2c0", "sha256": "c39af2c89778694e2946ca13db054a8a54fbc56e65e37f1d6d4cd15ad50865a9" }, "downloads": -1, "filename": "nipet-2.0.1.tar.gz", "has_sig": true, "md5_digest": "e7e38b27eadba0aeb6d789931690d2c0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 169449, "upload_time": "2021-01-05T04:23:38", "upload_time_iso_8601": "2021-01-05T04:23:38.459685Z", "url": "https://files.pythonhosted.org/packages/39/ca/d8d9b3d9062830d6937669f702646328040ace82ed2cac3d049e56c30e91/nipet-2.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "78f7d68abadf5258bede2d5eeb0d85fe", "sha256": "d88434807e1800a1c2bde8563031725ec62ad1f61693415a38c4257cf9a0266a" }, "downloads": -1, "filename": "nipet-2.0.2.tar.gz", "has_sig": true, "md5_digest": "78f7d68abadf5258bede2d5eeb0d85fe", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 169470, "upload_time": "2021-01-05T04:35:22", "upload_time_iso_8601": "2021-01-05T04:35:22.573611Z", "url": "https://files.pythonhosted.org/packages/4e/19/84dbe028e755ec027ddc846fdee207f5f7ce0b11f04d8898718ee6c869bb/nipet-2.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "bba0efcf1ed7296ec025a1f889e75a4b", "sha256": "9e8f175de07bf8544562f390aa7d976352151ade22694b24878186f292ab8ff8" }, "downloads": -1, "filename": "nipet-2.1.0.tar.gz", "has_sig": true, "md5_digest": "bba0efcf1ed7296ec025a1f889e75a4b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 170314, "upload_time": "2021-09-30T14:50:58", "upload_time_iso_8601": "2021-09-30T14:50:58.732882Z", "url": "https://files.pythonhosted.org/packages/fb/7f/8452f328b8ac0f1360cdbc0da448f658b37e9bbf07365c4093914e5026e7/nipet-2.1.0.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "bba0efcf1ed7296ec025a1f889e75a4b", "sha256": "9e8f175de07bf8544562f390aa7d976352151ade22694b24878186f292ab8ff8" }, "downloads": -1, "filename": "nipet-2.1.0.tar.gz", "has_sig": true, "md5_digest": "bba0efcf1ed7296ec025a1f889e75a4b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 170314, "upload_time": "2021-09-30T14:50:58", "upload_time_iso_8601": "2021-09-30T14:50:58.732882Z", "url": "https://files.pythonhosted.org/packages/fb/7f/8452f328b8ac0f1360cdbc0da448f658b37e9bbf07365c4093914e5026e7/nipet-2.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }