diff options
| author | Thibaut Horel <thibaut.horel@gmail.com> | 2014-02-27 11:29:59 -0500 |
|---|---|---|
| committer | Thibaut Horel <thibaut.horel@gmail.com> | 2014-02-27 11:29:59 -0500 |
| commit | 76054347cffacd7a4a6759f2187717e185d8082c (patch) | |
| tree | c5820b92e6d67019f9732813f4e4cf7f56412f65 /setup.py | |
| parent | 31ca595e875dd4e2cb07b2d3610b0d4b4f590abe (diff) | |
| download | ocr-layer-curation-76054347cffacd7a4a6759f2187717e185d8082c.tar.gz | |
Cython implementation of SW algorithm
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..f6ad141 --- /dev/null +++ b/setup.py @@ -0,0 +1,8 @@ +from distutils.core import setup +from distutils.extension import Extension +from Cython.Distutils import build_ext + +setup( + cmdclass = {'build_ext': build_ext}, + ext_modules = [Extension("lev", ["lev.pyx"])] +) |
