From: Stefan Behnel Date: Sun, 10 Mar 2013 11:59:58 +0000 (+0100) Subject: exclude setup.py from compiled modules X-Git-Tag: 0.19b1~67 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5e075713e97665cfc6d213023dd6c6816ae59910;p=platform%2Fupstream%2Fpython-cython.git exclude setup.py from compiled modules --- diff --git a/Demos/benchmarks/setup.py b/Demos/benchmarks/setup.py index bd04d4e..52c02ab 100644 --- a/Demos/benchmarks/setup.py +++ b/Demos/benchmarks/setup.py @@ -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"), )