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.

57 lines
2.2 KiB

4 years ago
  1. Metadata-Version: 2.1
  2. Name: numpy
  3. Version: 1.15.4
  4. Summary: NumPy: array processing for numbers, strings, records, and objects.
  5. Home-page: http://www.numpy.org
  6. Author: Travis E. Oliphant et al.
  7. Maintainer: NumPy Developers
  8. Maintainer-email: numpy-discussion@python.org
  9. License: BSD
  10. Download-URL: https://pypi.python.org/pypi/numpy
  11. Platform: Windows
  12. Platform: Linux
  13. Platform: Solaris
  14. Platform: Mac OS-X
  15. Platform: Unix
  16. Classifier: Development Status :: 5 - Production/Stable
  17. Classifier: Intended Audience :: Science/Research
  18. Classifier: Intended Audience :: Developers
  19. Classifier: License :: OSI Approved
  20. Classifier: Programming Language :: C
  21. Classifier: Programming Language :: Python
  22. Classifier: Programming Language :: Python :: 2
  23. Classifier: Programming Language :: Python :: 2.7
  24. Classifier: Programming Language :: Python :: 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 :: 3.7
  29. Classifier: Programming Language :: Python :: Implementation :: CPython
  30. Classifier: Topic :: Software Development
  31. Classifier: Topic :: Scientific/Engineering
  32. Classifier: Operating System :: Microsoft :: Windows
  33. Classifier: Operating System :: POSIX
  34. Classifier: Operating System :: Unix
  35. Classifier: Operating System :: MacOS
  36. Requires-Python: >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*
  37. NumPy is a general-purpose array-processing package designed to
  38. efficiently manipulate large multi-dimensional arrays of arbitrary
  39. records without sacrificing too much speed for small multi-dimensional
  40. arrays. NumPy is built on the Numeric code base and adds features
  41. introduced by numarray as well as an extended C-API and the ability to
  42. create arrays of arbitrary type which also makes NumPy suitable for
  43. interfacing with general-purpose data-base applications.
  44. There are also basic facilities for discrete fourier transform,
  45. basic linear algebra and random number generation.
  46. All numpy wheels distributed from pypi are BSD licensed.
  47. Windows wheels are linked against the ATLAS BLAS / LAPACK library, restricted
  48. to SSE2 instructions, so may not give optimal linear algebra performance for
  49. your machine. See http://docs.scipy.org/doc/numpy/user/install.html for
  50. alternatives.