You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
2.1 KiB

4 years ago
  1. Metadata-Version: 2.1
  2. Name: h5py
  3. Version: 2.8.0
  4. Summary: Read and write HDF5 files from Python
  5. Home-page: http://www.h5py.org
  6. Author: Andrew Collette
  7. Author-email: andrew.collette@gmail.com
  8. Maintainer: Andrew Collette
  9. Maintainer-email: andrew.collette@gmail.com
  10. License: BSD
  11. Download-URL: https://pypi.python.org/pypi/h5py
  12. Platform: UNKNOWN
  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: License :: OSI Approved :: BSD License
  18. Classifier: Programming Language :: Cython
  19. Classifier: Programming Language :: Python
  20. Classifier: Programming Language :: Python :: 2
  21. Classifier: Programming Language :: Python :: 2.6
  22. Classifier: Programming Language :: Python :: 2.7
  23. Classifier: Programming Language :: Python :: 3
  24. Classifier: Programming Language :: Python :: 3.3
  25. Classifier: Programming Language :: Python :: 3.4
  26. Classifier: Programming Language :: Python :: 3.5
  27. Classifier: Programming Language :: Python :: 3.6
  28. Classifier: Programming Language :: Python :: Implementation :: CPython
  29. Classifier: Topic :: Scientific/Engineering
  30. Classifier: Topic :: Database
  31. Classifier: Topic :: Software Development :: Libraries :: Python Modules
  32. Classifier: Operating System :: Unix
  33. Classifier: Operating System :: POSIX :: Linux
  34. Classifier: Operating System :: MacOS :: MacOS X
  35. Classifier: Operating System :: Microsoft :: Windows
  36. Requires-Dist: numpy (>=1.7)
  37. Requires-Dist: six
  38. The h5py package provides both a high- and low-level interface to the HDF5
  39. library from Python. The low-level interface is intended to be a complete
  40. wrapping of the HDF5 API, while the high-level component supports access to
  41. HDF5 files, datasets and groups using established Python and NumPy concepts.
  42. A strong emphasis on automatic conversion between Python (Numpy) datatypes and
  43. data structures and their HDF5 equivalents vastly simplifies the process of
  44. reading and writing data from Python.
  45. Supports HDF5 versions 1.8.4 and higher. On Windows, HDF5 is included with
  46. the installer.