METADATA 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. Metadata-Version: 2.4
  2. Name: h5py
  3. Version: 3.16.0
  4. Summary: Read and write HDF5 files from Python
  5. Author-email: Andrew Collette <andrew.collette@gmail.com>
  6. Maintainer-email: Thomas Kluyver <thomas@kluyver.me.uk>, Thomas A Caswell <tcaswell@bnl.gov>
  7. License-Expression: BSD-3-Clause
  8. Project-URL: Homepage, https://www.h5py.org/
  9. Project-URL: Source, https://github.com/h5py/h5py
  10. Project-URL: Documentation, https://docs.h5py.org/en/stable/
  11. Project-URL: Release notes, https://docs.h5py.org/en/stable/whatsnew/index.html
  12. Project-URL: Discussion forum, https://forum.hdfgroup.org/c/hdf5/h5py
  13. Classifier: Development Status :: 5 - Production/Stable
  14. Classifier: Intended Audience :: Developers
  15. Classifier: Intended Audience :: Information Technology
  16. Classifier: Intended Audience :: Science/Research
  17. Classifier: Operating System :: Unix
  18. Classifier: Operating System :: POSIX :: Linux
  19. Classifier: Operating System :: MacOS :: MacOS X
  20. Classifier: Operating System :: Microsoft :: Windows
  21. Classifier: Programming Language :: Cython
  22. Classifier: Programming Language :: Python
  23. Classifier: Programming Language :: Python :: 3
  24. Classifier: Programming Language :: Python :: 3.10
  25. Classifier: Programming Language :: Python :: 3.11
  26. Classifier: Programming Language :: Python :: 3.12
  27. Classifier: Programming Language :: Python :: 3.13
  28. Classifier: Programming Language :: Python :: 3.14
  29. Classifier: Programming Language :: Python :: Free Threading :: 1 - Unstable
  30. Classifier: Programming Language :: Python :: Implementation :: CPython
  31. Classifier: Topic :: Scientific/Engineering
  32. Classifier: Topic :: Database
  33. Classifier: Topic :: Software Development :: Libraries :: Python Modules
  34. Requires-Python: >=3.10
  35. Description-Content-Type: text/x-rst
  36. License-File: LICENSE
  37. License-File: lzf/LICENSE.txt
  38. License-File: licenses/hdf5.txt
  39. License-File: licenses/license.txt
  40. License-File: licenses/pytables.txt
  41. License-File: licenses/python.txt
  42. License-File: licenses/stdint.txt
  43. Requires-Dist: numpy>=1.21.2
  44. Dynamic: license-file
  45. Dynamic: requires-dist
  46. The h5py package provides both a high- and low-level interface to the HDF5
  47. library from Python. The low-level interface is intended to be a complete
  48. wrapping of the HDF5 API, while the high-level component supports access to
  49. HDF5 files, datasets and groups using established Python and NumPy concepts.
  50. A strong emphasis on automatic conversion between Python (Numpy) datatypes and
  51. data structures and their HDF5 equivalents vastly simplifies the process of
  52. reading and writing data from Python.
  53. Wheels are provided for several popular platforms, with an included copy of
  54. the HDF5 library (usually the latest version when h5py is released).
  55. You can also `build h5py from source
  56. <https://docs.h5py.org/en/stable/build.html#source-installation>`_
  57. with any HDF5 stable release from version 1.10.4 onwards, although naturally new
  58. HDF5 versions released after this version of h5py may not work.
  59. Odd-numbered minor versions of HDF5 (e.g. 1.13) are experimental, and may not
  60. be supported.