summaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorGuillaume Horel <guillaume.horel@gmail.com>2017-02-23 15:36:08 -0500
committerGuillaume Horel <guillaume.horel@gmail.com>2017-02-23 15:36:08 -0500
commit31cf1177aa62378f6568dc16f09f44707a61d90a (patch)
treea7ca7ef0e458e6f832e4eef834fec29a7a45d19b /setup.py
parent18cc63b1f3ebabdb2598ceababbc58ec51082d53 (diff)
downloadpyisda-31cf1177aa62378f6568dc16f09f44707a61d90a.tar.gz
no need for cpp_layer
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 da9a315..6f22f1a 100644
--- a/setup.py
+++ b/setup.py
@@ -4,7 +4,7 @@ from Cython.Build import cythonize
import numpy
all_extensions = Extension("*", ["pyisda/*.pyx"],
- include_dirs = ['cpp_layer', 'c_layer', numpy.get_include()],
+ include_dirs = ['c_layer', numpy.get_include()],
libraries = ["cds"],
language = 'c++')