summaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorGuillaume Horel <guillaume.horel@gmail.com>2017-06-06 14:52:27 -0400
committerGuillaume Horel <guillaume.horel@gmail.com>2017-06-06 14:52:27 -0400
commit9638e84f90e3661d75d44231295b48cbf5a63d59 (patch)
tree5513d098dd50dcaa2e8770e51a5ba38ce4bbd4e2 /setup.py
parentb0ac54500bc53f5f41bebefaf726548666a705f2 (diff)
downloadpyisda-9638e84f90e3661d75d44231295b48cbf5a63d59.tar.gz
add hand written serialize and deserialize function in C
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 6f22f1a..b7cd880 100644
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ import numpy
all_extensions = Extension("*", ["pyisda/*.pyx"],
include_dirs = ['c_layer', numpy.get_include()],
- libraries = ["cds"],
+ libraries = ["cds", "cityhash"],
language = 'c++')
c_extension = Extension("pyisda.flat_hazard",