diff Alignment/setupCython.py @ 0:1eb6054a1f84

First Commit
author Victor Padilla <victor.padilla.mc@gmail.com>
date Mon, 04 May 2015 22:47:33 +0200
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Alignment/setupCython.py	Mon May 04 22:47:33 2015 +0200
@@ -0,0 +1,8 @@
+from distutils.core import setup
+from Cython.Build import cythonize
+import numpy
+
+setup(
+    ext_modules = cythonize("FastAlignmentArrays.pyx"),
+    include_dirs=[numpy.get_include()]
+)
\ No newline at end of file