using for loop to install conda package

This commit is contained in:
ton
2023-04-16 11:03:27 +07:00
parent 49da9f29c1
commit 0c2b34d6f8
12168 changed files with 2656238 additions and 1 deletions

View File

@@ -0,0 +1 @@
pip

View File

@@ -0,0 +1,24 @@
Copyright (c) 2014-2022, imageio developers
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

View File

@@ -0,0 +1,132 @@
Metadata-Version: 2.1
Name: imageio
Version: 2.27.0
Summary: Library for reading and writing a wide range of image, video, scientific, and volumetric data formats.
Home-page: https://github.com/imageio/imageio
Download-URL: http://pypi.python.org/pypi/imageio
Author: imageio contributors
Author-email: almar.klein@gmail.com
License: BSD-2-Clause
Keywords: image video volume imread imwrite io animation ffmpeg
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Provides: imageio
Requires-Python: >=3.7
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: pillow (>=8.3.2)
Provides-Extra: all-plugins
Requires-Dist: astropy ; extra == 'all-plugins'
Requires-Dist: av ; extra == 'all-plugins'
Requires-Dist: imageio-ffmpeg ; extra == 'all-plugins'
Requires-Dist: psutil ; extra == 'all-plugins'
Requires-Dist: tifffile ; extra == 'all-plugins'
Provides-Extra: all-plugins-pypy
Requires-Dist: av ; extra == 'all-plugins-pypy'
Requires-Dist: imageio-ffmpeg ; extra == 'all-plugins-pypy'
Requires-Dist: psutil ; extra == 'all-plugins-pypy'
Requires-Dist: tifffile ; extra == 'all-plugins-pypy'
Provides-Extra: bsdf
Provides-Extra: build
Requires-Dist: wheel ; extra == 'build'
Provides-Extra: dev
Requires-Dist: invoke ; extra == 'dev'
Requires-Dist: pytest ; extra == 'dev'
Requires-Dist: pytest-cov ; extra == 'dev'
Requires-Dist: fsspec[github] ; extra == 'dev'
Requires-Dist: black ; extra == 'dev'
Requires-Dist: flake8 ; extra == 'dev'
Provides-Extra: dicom
Provides-Extra: docs
Requires-Dist: sphinx (<6) ; extra == 'docs'
Requires-Dist: numpydoc ; extra == 'docs'
Requires-Dist: pydata-sphinx-theme ; extra == 'docs'
Provides-Extra: feisem
Provides-Extra: ffmpeg
Requires-Dist: imageio-ffmpeg ; extra == 'ffmpeg'
Requires-Dist: psutil ; extra == 'ffmpeg'
Provides-Extra: fits
Requires-Dist: astropy ; extra == 'fits'
Provides-Extra: freeimage
Provides-Extra: full
Requires-Dist: astropy ; extra == 'full'
Requires-Dist: av ; extra == 'full'
Requires-Dist: black ; extra == 'full'
Requires-Dist: flake8 ; extra == 'full'
Requires-Dist: fsspec[github] ; extra == 'full'
Requires-Dist: gdal ; extra == 'full'
Requires-Dist: imageio-ffmpeg ; extra == 'full'
Requires-Dist: invoke ; extra == 'full'
Requires-Dist: itk ; extra == 'full'
Requires-Dist: numpydoc ; extra == 'full'
Requires-Dist: psutil ; extra == 'full'
Requires-Dist: pydata-sphinx-theme ; extra == 'full'
Requires-Dist: pytest ; extra == 'full'
Requires-Dist: pytest-cov ; extra == 'full'
Requires-Dist: sphinx (<6) ; extra == 'full'
Requires-Dist: tifffile ; extra == 'full'
Requires-Dist: wheel ; extra == 'full'
Provides-Extra: gdal
Requires-Dist: gdal ; extra == 'gdal'
Provides-Extra: itk
Requires-Dist: itk ; extra == 'itk'
Provides-Extra: linting
Requires-Dist: black ; extra == 'linting'
Requires-Dist: flake8 ; extra == 'linting'
Provides-Extra: lytro
Provides-Extra: numpy
Provides-Extra: pillow
Provides-Extra: pyav
Requires-Dist: av ; extra == 'pyav'
Provides-Extra: simpleitk
Provides-Extra: spe
Provides-Extra: swf
Provides-Extra: test
Requires-Dist: invoke ; extra == 'test'
Requires-Dist: pytest ; extra == 'test'
Requires-Dist: pytest-cov ; extra == 'test'
Requires-Dist: fsspec[github] ; extra == 'test'
Provides-Extra: tifffile
Requires-Dist: tifffile ; extra == 'tifffile'
.. image:: https://github.com/imageio/imageio/workflows/CI/badge.svg
:target: https://github.com/imageio/imageio/actions
Imageio is a Python library that provides an easy interface to read and
write a wide range of image data, including animated images, volumetric
data, and scientific formats. It is cross-platform, runs on Python 3.5+,
and is easy to install.
Main website: https://imageio.readthedocs.io/
Release notes: https://github.com/imageio/imageio/blob/master/CHANGELOG.md
Example:
.. code-block:: python
>>> import imageio
>>> im = imageio.imread('imageio:astronaut.png')
>>> im.shape # im is a numpy array
(512, 512, 3)
>>> imageio.imwrite('astronaut-gray.jpg', im[:, :, 0])
See the `API Reference <https://imageio.readthedocs.io/en/stable/reference/index.html>`_
or `examples <https://imageio.readthedocs.io/en/stable/examples.html>`_
for more information.

View File

@@ -0,0 +1,122 @@
../../Scripts/imageio_download_bin.exe,sha256=HvdbtBNm-U0vTU5Tve5toERvuDFr_P5bhD1aR7Et8u8,108440
../../Scripts/imageio_remove_bin.exe,sha256=pg16t0BrbprX-fHl4TMeUeEQbPrGPR0XtYMDWGH6Zr8,108436
imageio-2.27.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
imageio-2.27.0.dist-info/LICENSE,sha256=rlmepQpJTvtyXkIKqzXR91kgDP5BhrbGSjC6Sds_0GQ,1307
imageio-2.27.0.dist-info/METADATA,sha256=maJi9DLJL59YjFcLunT35lfywXOQXUDakA9q7Y5zWfY,4816
imageio-2.27.0.dist-info/RECORD,,
imageio-2.27.0.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
imageio-2.27.0.dist-info/entry_points.txt,sha256=0-yB6XGfrx1OMPw_xigPramTcwi5M4jX6L5Edrz0OoU,130
imageio-2.27.0.dist-info/top_level.txt,sha256=iSUjc-wEw-xbMTvMOSKg85n0-E7Ms--Mo4FLMC-J2YM,8
imageio/__init__.py,sha256=Mmrv6t3hjHADVU1nH8KHeYe8gn46sEuWqGbeV9zfY8U,3272
imageio/__main__.py,sha256=s5nidb9wRZ6AbimHTPHULt3sTXPx4mqNil67KJHZvd4,5393
imageio/__pycache__/__init__.cpython-311.pyc,,
imageio/__pycache__/__main__.cpython-311.pyc,,
imageio/__pycache__/freeze.cpython-311.pyc,,
imageio/__pycache__/testing.cpython-311.pyc,,
imageio/__pycache__/typing.cpython-311.pyc,,
imageio/__pycache__/v2.cpython-311.pyc,,
imageio/__pycache__/v3.cpython-311.pyc,,
imageio/config/__init__.py,sha256=8NOpL5ePrkiioJb9hRBw3rydc4iNZkMwp7VdQlP4jDc,307
imageio/config/__pycache__/__init__.cpython-311.pyc,,
imageio/config/__pycache__/extensions.cpython-311.pyc,,
imageio/config/__pycache__/plugins.cpython-311.pyc,,
imageio/config/extensions.py,sha256=zeBMAUyDU_PawGCOtCEF7OtrUIO-tmRgzigP2VyN-EA,46752
imageio/config/extensions.pyi,sha256=sLrA-wt09kPHBDJP79tGtEOX7XTcEEjRzA70O8BCsD0,605
imageio/config/plugins.py,sha256=7GJfNvQ-toECV4J_iFn9xGJOB3AP-4cT_KQOk92YIaY,20332
imageio/config/plugins.pyi,sha256=pzH8pacqU5uldsvYOee_nhd2Hkk3mR8VQBtjeVnkkHY,706
imageio/core/__init__.py,sha256=PSkGH8K76ntSWhwM4j7W49UmCSZf_OGaSl9fNbQP7uQ,639
imageio/core/__pycache__/__init__.cpython-311.pyc,,
imageio/core/__pycache__/fetching.cpython-311.pyc,,
imageio/core/__pycache__/findlib.cpython-311.pyc,,
imageio/core/__pycache__/format.cpython-311.pyc,,
imageio/core/__pycache__/imopen.cpython-311.pyc,,
imageio/core/__pycache__/legacy_plugin_wrapper.cpython-311.pyc,,
imageio/core/__pycache__/request.cpython-311.pyc,,
imageio/core/__pycache__/util.cpython-311.pyc,,
imageio/core/__pycache__/v3_plugin_api.cpython-311.pyc,,
imageio/core/fetching.py,sha256=r81yBsJMqkwAXeVAuQuAzbk9etWxQUEUe4__UUjpQpc,9176
imageio/core/findlib.py,sha256=Zrhs0rEyp8p8iSIuCoBco0dCaB5dxJVZ4lRgv82Sqm0,5552
imageio/core/format.py,sha256=SL6EBAxUa-66kvHZ0ZjLehm6A0SEKKWBA4pN9cx5-Yo,30285
imageio/core/format.pyi,sha256=5BZF-xwp5BmG8C5ahfL48z_a2MITN0509Uf6f1phZRw,3336
imageio/core/imopen.py,sha256=YfCxpQhMiXySiopeT2ICwTjgb7mrTwS1ssa_s3C5Nbk,10346
imageio/core/imopen.pyi,sha256=QcVF5tUjy6qrAK2P5J_9wj2Heb3dt9Uyz3RKZpJCfjE,1982
imageio/core/legacy_plugin_wrapper.py,sha256=jJAfKCqeFWnYkNTbJbfme0EMonVUD3fBSSMHcoLzX30,12137
imageio/core/legacy_plugin_wrapper.pyi,sha256=ENmdth_Avp2yTzuyInGWT2QXgAv72RrFRd6QH71LVqU,1064
imageio/core/request.py,sha256=FN2kRISObTs700gPEuqt3BIu4ELYJc-BUL9UneVjBX8,26796
imageio/core/request.pyi,sha256=ivqAXs3UfxhuXQfg8qsAtEVymCsppPwadztFzSXpIAo,2315
imageio/core/util.py,sha256=3-TvMyWV6c67j6FnOztPaTVfoFjHn5z_mKb4IXjFUQM,18655
imageio/core/v3_plugin_api.py,sha256=cWlr7ju8EW7UkkSqLMpHrJDa5xEtIulDWs3K-g6jPQg,15562
imageio/freeze.py,sha256=hi9MNZz-ridgQBWcAqnd92sULek2lgmBSTmuott5lus,170
imageio/plugins/__init__.py,sha256=GSxtio0ph5QHP2asdLvyzW8lVfiRqOii8kaqYsBO9CE,3469
imageio/plugins/__pycache__/__init__.cpython-311.pyc,,
imageio/plugins/__pycache__/_bsdf.cpython-311.pyc,,
imageio/plugins/__pycache__/_dicom.cpython-311.pyc,,
imageio/plugins/__pycache__/_freeimage.cpython-311.pyc,,
imageio/plugins/__pycache__/_swf.cpython-311.pyc,,
imageio/plugins/__pycache__/_tifffile.cpython-311.pyc,,
imageio/plugins/__pycache__/bsdf.cpython-311.pyc,,
imageio/plugins/__pycache__/dicom.cpython-311.pyc,,
imageio/plugins/__pycache__/example.cpython-311.pyc,,
imageio/plugins/__pycache__/feisem.cpython-311.pyc,,
imageio/plugins/__pycache__/ffmpeg.cpython-311.pyc,,
imageio/plugins/__pycache__/fits.cpython-311.pyc,,
imageio/plugins/__pycache__/freeimage.cpython-311.pyc,,
imageio/plugins/__pycache__/freeimagemulti.cpython-311.pyc,,
imageio/plugins/__pycache__/gdal.cpython-311.pyc,,
imageio/plugins/__pycache__/grab.cpython-311.pyc,,
imageio/plugins/__pycache__/lytro.cpython-311.pyc,,
imageio/plugins/__pycache__/npz.cpython-311.pyc,,
imageio/plugins/__pycache__/opencv.cpython-311.pyc,,
imageio/plugins/__pycache__/pillow.cpython-311.pyc,,
imageio/plugins/__pycache__/pillow_info.cpython-311.pyc,,
imageio/plugins/__pycache__/pillow_legacy.cpython-311.pyc,,
imageio/plugins/__pycache__/pillowmulti.cpython-311.pyc,,
imageio/plugins/__pycache__/pyav.cpython-311.pyc,,
imageio/plugins/__pycache__/simpleitk.cpython-311.pyc,,
imageio/plugins/__pycache__/spe.cpython-311.pyc,,
imageio/plugins/__pycache__/swf.cpython-311.pyc,,
imageio/plugins/__pycache__/tifffile.cpython-311.pyc,,
imageio/plugins/__pycache__/tifffile_v3.cpython-311.pyc,,
imageio/plugins/_bsdf.py,sha256=plK0igUJJLSg_q1HExD8k2v4-CJ30C7nHUdCuKmhqJ4,32754
imageio/plugins/_dicom.py,sha256=Ub8KWS0rS2GliKqfjHLj1N0Mg8iI2lSqVwEcEdC6TiE,33834
imageio/plugins/_freeimage.py,sha256=GD25ZqqvbFnBILPRYHrTb5qbFsvXBVKv_qIE3139D68,51740
imageio/plugins/_swf.py,sha256=iIPr5XGleRmFdsJyIFroE_0YyTb7QuI8SGCHhoXemBI,25759
imageio/plugins/_tifffile.py,sha256=mQkxDuW_ir0Mg2rknFskoN5AcYLSfAJhcFotU0u9fs4,371589
imageio/plugins/bsdf.py,sha256=spISvLLVH319wDJ8YhYcvDTaJe2acElgWSvgqEkpd_g,12852
imageio/plugins/dicom.py,sha256=mQYNbTyum4jVhjZQ8TU-4A5csHpQfT-BRBBCP5fu6Zs,12621
imageio/plugins/example.py,sha256=4POb_LDQtSxHWxiflGqGKKKKrpItqLIFQeU8x7tro-c,5501
imageio/plugins/feisem.py,sha256=AKwZv7Zac0_grnr-wnzU7R0Zf2KSUe91k06evPa1NI8,3360
imageio/plugins/ffmpeg.py,sha256=zUymlBwK_cXUKHnpn8tqDrgzMJYDvt7do2JP6-IkYBI,29928
imageio/plugins/fits.py,sha256=XnlmeC79sIiIPd_7IDx05-p3-b2unO4CVR0nWAA4ph0,4531
imageio/plugins/freeimage.py,sha256=SuzYuGvCtZIiXIr51dWRTl5CATzRUqb8pNCSIg9YZv8,14645
imageio/plugins/freeimagemulti.py,sha256=7jW3mJX-ZVnDqe2veIvU9wPY_x0EBOmPKP8ppPxRO_M,11288
imageio/plugins/gdal.py,sha256=r2Ux7MQeHCUsmdk0aGENzGX8M5hCBU7NJomcf6G8FCU,1653
imageio/plugins/grab.py,sha256=g6KbKVQUquHro_BW6He7NNmivVV-UtcsCJoDt3rdly0,2776
imageio/plugins/lytro.py,sha256=V3dToE-eV6jLhtae26_uHHgOx6O1LsOo0hm7nnRptMM,25310
imageio/plugins/npz.py,sha256=7ZQr-4lQEKbfjaF6rOmpq9pQgDTUHvkZa_NHZkJWBQo,2670
imageio/plugins/opencv.py,sha256=6mYrbGXOdRm8M2_lx1Z6ufqk2_L-I7mHRa5ksoNFwxU,11630
imageio/plugins/pillow.py,sha256=_mbrlf91l95nBWqohRQTZlbh872DuKe8QuX_vECVF30,17747
imageio/plugins/pillow_info.py,sha256=Bt5iJtQnAh6mGViPIxhxRQPNidqay9-6BleAJZkhN1w,36624
imageio/plugins/pillow_legacy.py,sha256=iozj1o98Le8Dgh59aQEHF8ZCvePR9QU4Xa4p0VIBFMs,31714
imageio/plugins/pillowmulti.py,sha256=h6KoForwdVu1NBIMgqFZQU-qXY_M71olD9H3njy_Tz8,11293
imageio/plugins/pyav.py,sha256=BJt0wbA7lg8RwBqH_cRR7YRTY4aNfiZxx6UA04VyI-8,45077
imageio/plugins/simpleitk.py,sha256=ldQWjkiCSZPoUnN87MtUqRIMMcIKmk8ZUeyDCQhnpG0,4107
imageio/plugins/spe.py,sha256=GMjJoY2ONnJwACUKZyA5cuTnBZFho7JICUdGay9thr8,24728
imageio/plugins/swf.py,sha256=0B9f-HF528OcHXTIF3nptoSJUu4GNId03rFLfFFOaFk,11756
imageio/plugins/tifffile.py,sha256=VSRFI79zEvD8rA119F2_QwjF1NlHWW5tSQEC02nzumY,20665
imageio/plugins/tifffile_v3.py,sha256=5kXW7Y80Wh41ChiDjYFQxbluc5ytn5XNlbC5AFq25I0,14989
imageio/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
imageio/resources/images/astronaut.png,sha256=iEMc2WU8zVOXQbVV-wpGthVYswHUEQQStbwotePqbLU,791555
imageio/resources/images/chelsea.png,sha256=l0A8nBcdGu3SAmx1FeICCO-GXqq1bUYsPC7vrem313k,221294
imageio/resources/images/chelsea.zip,sha256=ieIbNItsviHa0hRghW_MBOgCXdnr1Sp7MvC_vXEDGJo,221318
imageio/resources/images/cockatoo.mp4,sha256=X9419aKIyobiFtLcKBiKtktFYNMCHyc_rv3w3oDziqU,728751
imageio/resources/images/newtonscradle.gif,sha256=pmPE4Ha1xI4KrFjHd30rsxk8swU8CY0I2ieKYtAv8xQ,583374
imageio/resources/images/realshort.mp4,sha256=qLNcLCEwRTueoRcq1K9orAJ7wkg-8FRXaWhHIhJ7_hg,96822
imageio/resources/images/stent.npz,sha256=YKg9Ipa1HualMVPpupa6kCA5GwyJUoldnWCgpimsa7Y,824612
imageio/resources/shipped_resources_go_here,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
imageio/testing.py,sha256=tkRPxZZpG68q_MAIux8WE8QeKbhbq6rDPVfCDsof1Ms,1597
imageio/typing.py,sha256=GiWD3Muonws8wZv3SDsuP_5s6eZtYHouEAshCo-5bW0,342
imageio/v2.py,sha256=lGZCZtfh_eReuBFCW8nFLYcM0ZwfjLRc4-1JcOi3VZs,17839
imageio/v2.pyi,sha256=ROazbwu1rSJLBaEtXmUG2oT9BMr7ZlyyW26twgFWx5E,2250
imageio/v3.py,sha256=ZE0IlERPT_4wryYqUOD4-LLc6dVpDZXV6N6JEQtbMiQ,9267
imageio/v3.pyi,sha256=AtLP0IWqS-sX1qDyHPdjCCIsKGwXU5z41XOXzUj2pGQ,1344

View File

@@ -0,0 +1,5 @@
Wheel-Version: 1.0
Generator: bdist_wheel (0.40.0)
Root-Is-Purelib: true
Tag: py3-none-any

View File

@@ -0,0 +1,3 @@
[console_scripts]
imageio_download_bin = imageio.__main__:download_bin_main
imageio_remove_bin = imageio.__main__:remove_bin_main

View File

@@ -0,0 +1 @@
imageio