METADATA 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. Metadata-Version: 2.1
  2. Name: Cython
  3. Version: 0.28.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.3
  20. Classifier: Programming Language :: Python :: 3.4
  21. Classifier: Programming Language :: Python :: 3.5
  22. Classifier: Programming Language :: Python :: 3.6
  23. Classifier: Programming Language :: Python :: 3.7
  24. Classifier: Programming Language :: Python :: Implementation :: CPython
  25. Classifier: Programming Language :: Python :: Implementation :: PyPy
  26. Classifier: Programming Language :: C
  27. Classifier: Programming Language :: Cython
  28. Classifier: Topic :: Software Development :: Code Generators
  29. Classifier: Topic :: Software Development :: Compilers
  30. Classifier: Topic :: Software Development :: Libraries :: Python Modules
  31. Requires-Python: >=2.6, !=3.0.*, !=3.1.*, !=3.2.*
  32. The Cython language makes writing C extensions for the Python language as
  33. easy as Python itself. Cython is a source code translator based on Pyrex_,
  34. but supports more cutting edge functionality and optimizations.
  35. The Cython language is a superset of the Python language (almost all Python
  36. code is also valid Cython code), but Cython additionally supports optional
  37. static typing to natively call C functions, operate with C++ classes and
  38. declare fast C types on variables and class attributes. This allows the
  39. compiler to generate very efficient C code from Cython code.
  40. This makes Cython the ideal language for writing glue code for external
  41. C/C++ libraries, and for fast C modules that speed up the execution of
  42. Python code.
  43. Note that for one-time builds, e.g. for CI/testing, on platforms that are not
  44. covered by one of the wheel packages provided on PyPI, it is substantially faster
  45. than a full source build to install an uncompiled (slower) version of Cython with::
  46. pip install Cython --install-option="--no-cython-compile"
  47. .. _Pyrex: http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/