summaryrefslogtreecommitdiff
path: root/devel/py-cython/DESCR
diff options
context:
space:
mode:
authordrochner <drochner@pkgsrc.org>2010-07-15 17:41:57 +0000
committerdrochner <drochner@pkgsrc.org>2010-07-15 17:41:57 +0000
commitae0eaea71d7a637f52aa2f7d658e3a79005e8c49 (patch)
tree9e6d5b9d6f03991b2dbeb89230da0b4ddb56188b /devel/py-cython/DESCR
parenteaee16828cc698739c23c05432ed93605ae722a0 (diff)
downloadpkgsrc-ae0eaea71d7a637f52aa2f7d658e3a79005e8c49.tar.gz
add py-cython-0.12.1, a compiler to build Pythin extensions, from
Kamel Derouiche per pkgsrc-wip
Diffstat (limited to 'devel/py-cython/DESCR')
-rw-r--r--devel/py-cython/DESCR14
1 files changed, 14 insertions, 0 deletions
diff --git a/devel/py-cython/DESCR b/devel/py-cython/DESCR
new file mode 100644
index 00000000000..3c57b208ba4
--- /dev/null
+++ b/devel/py-cython/DESCR
@@ -0,0 +1,14 @@
+The Cython language makes writing C extensions for the Python language
+as easy as Python itself. Cython is a source code translator based on
+the well-known Pyrex, but supports more cutting edge functionality and
+optimizations.
+
+The Cython language is very close to the Python language (and most
+Python code is also valid Cython code), but Cython additionally supports
+calling C functions and declaring C types on variables and class
+attributes. This allows the compiler to generate very efficient C code
+from Cython code.
+
+This makes Cython the ideal language for writing glue code for external
+C libraries, and for fast C modules that speed up the execution of
+Python code.