exclude setup.py from compiled modules
authorStefan Behnel <stefan_ml@behnel.de>
Sun, 10 Mar 2013 11:59:58 +0000 (12:59 +0100)
committerStefan Behnel <stefan_ml@behnel.de>
Sun, 10 Mar 2013 11:59:58 +0000 (12:59 +0100)
Demos/benchmarks/setup.py

index bd04d4e..52c02ab 100644 (file)
@@ -8,5 +8,6 @@ directives = {
 setup(
   name = 'benchmarks',
   ext_modules = cythonize("*.py", language_level=3, annotate=True,
-                          compiler_directives=directives),
+                          compiler_directives=directives,
+                          exclude="setup.py"),
 )