METADATA 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. Metadata-Version: 2.1
  2. Name: Cython
  3. Version: 0.29.37
  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. Project-URL: Documentation, https://cython.readthedocs.io/
  10. Project-URL: Donate, https://cython.readthedocs.io/en/latest/src/donating.html
  11. Project-URL: Source Code, https://github.com/cython/cython
  12. Project-URL: Bug Tracker, https://github.com/cython/cython/issues
  13. Project-URL: User Group, https://groups.google.com/g/cython-users
  14. Classifier: Development Status :: 5 - Production/Stable
  15. Classifier: Intended Audience :: Developers
  16. Classifier: License :: OSI Approved :: Apache Software License
  17. Classifier: Operating System :: OS Independent
  18. Classifier: Programming Language :: Python
  19. Classifier: Programming Language :: Python :: 2
  20. Classifier: Programming Language :: Python :: 2.6
  21. Classifier: Programming Language :: Python :: 2.7
  22. Classifier: Programming Language :: Python :: 3
  23. Classifier: Programming Language :: Python :: 3.4
  24. Classifier: Programming Language :: Python :: 3.5
  25. Classifier: Programming Language :: Python :: 3.6
  26. Classifier: Programming Language :: Python :: 3.7
  27. Classifier: Programming Language :: Python :: 3.8
  28. Classifier: Programming Language :: Python :: 3.9
  29. Classifier: Programming Language :: Python :: 3.10
  30. Classifier: Programming Language :: Python :: 3.11
  31. Classifier: Programming Language :: Python :: Implementation :: CPython
  32. Classifier: Programming Language :: Python :: Implementation :: PyPy
  33. Classifier: Programming Language :: C
  34. Classifier: Programming Language :: Cython
  35. Classifier: Topic :: Software Development :: Code Generators
  36. Classifier: Topic :: Software Development :: Compilers
  37. Classifier: Topic :: Software Development :: Libraries :: Python Modules
  38. Requires-Python: >=2.6, !=3.0.*, !=3.1.*, !=3.2.*
  39. License-File: LICENSE.txt
  40. License-File: COPYING.txt
  41. The Cython language makes writing C extensions for the Python language as
  42. easy as Python itself. Cython is a source code translator based on Pyrex_,
  43. but supports more cutting edge functionality and optimizations.
  44. The Cython language is a superset of the Python language (almost all Python
  45. code is also valid Cython code), but Cython additionally supports optional
  46. static typing to natively call C functions, operate with C++ classes and
  47. declare fast C types on variables and class attributes. This allows the
  48. compiler to generate very efficient C code from Cython code.
  49. This makes Cython the ideal language for writing glue code for external
  50. C/C++ libraries, and for fast C modules that speed up the execution of
  51. Python code.
  52. Note that for one-time builds, e.g. for CI/testing, on platforms that are not
  53. covered by one of the wheel packages provided on PyPI *and* the pure Python wheel
  54. that we provide is not used, it is substantially faster than a full source build
  55. to install an uncompiled (slower) version of Cython with::
  56. pip install Cython --install-option="--no-cython-compile"
  57. .. _Pyrex: http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/