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.

54 lines
2.5 KiB

4 years ago
  1. Metadata-Version: 2.1
  2. Name: Cython
  3. Version: 0.29.2
  4. Summary: The Cython compiler for writing C extensions for the Python language.
  5. Home-page: http://cython.org/
  6. Author: Robert Bradshaw, Stefan Behnel, Dag Seljebotn, Greg Ewing, et al.
  7. Author-email: cython-devel@python.org
  8. License: Apache
  9. Platform: UNKNOWN
  10. Classifier: Development Status :: 5 - Production/Stable
  11. Classifier: Intended Audience :: Developers
  12. Classifier: License :: OSI Approved :: Apache Software License
  13. Classifier: Operating System :: OS Independent
  14. Classifier: Programming Language :: Python
  15. Classifier: Programming Language :: Python :: 2
  16. Classifier: Programming Language :: Python :: 2.6
  17. Classifier: Programming Language :: Python :: 2.7
  18. Classifier: Programming Language :: Python :: 3
  19. Classifier: Programming Language :: Python :: 3.4
  20. Classifier: Programming Language :: Python :: 3.5
  21. Classifier: Programming Language :: Python :: 3.6
  22. Classifier: Programming Language :: Python :: 3.7
  23. Classifier: Programming Language :: Python :: Implementation :: CPython
  24. Classifier: Programming Language :: Python :: Implementation :: PyPy
  25. Classifier: Programming Language :: C
  26. Classifier: Programming Language :: Cython
  27. Classifier: Topic :: Software Development :: Code Generators
  28. Classifier: Topic :: Software Development :: Compilers
  29. Classifier: Topic :: Software Development :: Libraries :: Python Modules
  30. Requires-Python: >=2.6, !=3.0.*, !=3.1.*, !=3.2.*
  31. The Cython language makes writing C extensions for the Python language as
  32. easy as Python itself. Cython is a source code translator based on Pyrex_,
  33. but supports more cutting edge functionality and optimizations.
  34. The Cython language is a superset of the Python language (almost all Python
  35. code is also valid Cython code), but Cython additionally supports optional
  36. static typing to natively call C functions, operate with C++ classes and
  37. declare fast C types on variables and class attributes. This allows the
  38. compiler to generate very efficient C code from Cython code.
  39. This makes Cython the ideal language for writing glue code for external
  40. C/C++ libraries, and for fast C modules that speed up the execution of
  41. Python code.
  42. Note that for one-time builds, e.g. for CI/testing, on platforms that are not
  43. covered by one of the wheel packages provided on PyPI, it is substantially faster
  44. than a full source build to install an uncompiled (slower) version of Cython with::
  45. pip install Cython --install-option="--no-cython-compile"
  46. .. _Pyrex: http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/