diff options
| author | Guillaume Horel <guillaume.horel@gmail.com> | 2017-02-14 17:06:45 -0500 |
|---|---|---|
| committer | Guillaume Horel <guillaume.horel@gmail.com> | 2017-02-14 17:07:29 -0500 |
| commit | c6ea69394eb6a518b5e6a27f08ae77f85cb733e6 (patch) | |
| tree | f4171c73f1a255483797de36aedeeb2e4d17c722 /setup.py | |
| parent | 1e3db181f9721090440358a5601725ed4d159341 (diff) | |
| download | pyisda-c6ea69394eb6a518b5e6a27f08ae77f85cb733e6.tar.gz | |
Add forward_hazard_rates property
this is also an example of returning a numpy array allocated
with malloc on the C side.
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4,7 +4,7 @@ from Cython.Build import cythonize import numpy all_extensions = Extension("*", ["pyisda/*.pyx"], - include_dirs = ['c_layer'], + include_dirs = ['c_layer', numpy.get_include()], libraries = ["cds"]) c_extension = Extension("pyisda.flat_hazard", |
