diff options
author | Helmut Grohne <helmut@subdivi.de> | 2013-03-24 21:11:07 +0100 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2013-03-24 21:11:07 +0100 |
commit | 096a61df7ff2beb652c341ef35c5a6efb6f6b652 (patch) | |
tree | dc39aae8755995004afc7fc8cd25e73cf24be17a /setup.py | |
parent | aaa44b3c98db6508886b69c301021c38b3344a8a (diff) | |
download | ssdeep-096a61df7ff2beb652c341ef35c5a6efb6f6b652.tar.gz |
cython module
Finally a Python interface in the spirit of hashlib.
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..312c181 --- /dev/null +++ b/setup.py @@ -0,0 +1,12 @@ +#!/usr/bin/env python + +from distutils.core import setup +from distutils.extension import Extension +from Cython.Distutils import build_ext + +sourcefiles = ['pyfuzzy.pyx', 'fuzzy.c'] + +setup( + cmdclass = {'build_ext': build_ext}, + ext_modules = [Extension("pyfuzzy", sourcefiles)] +) |