added setup.py script to compile benchmark modules
authorStefan Behnel <stefan_ml@behnel.de>
Thu, 5 Jul 2012 08:12:56 +0000 (10:12 +0200)
committerStefan Behnel <stefan_ml@behnel.de>
Thu, 5 Jul 2012 08:12:56 +0000 (10:12 +0200)
Demos/benchmarks/setup.py [new file with mode: 0644]

diff --git a/Demos/benchmarks/setup.py b/Demos/benchmarks/setup.py
new file mode 100644 (file)
index 0000000..8e8e74a
--- /dev/null
@@ -0,0 +1,7 @@
+from distutils.core import setup
+from Cython.Build import cythonize
+
+setup(
+  name = 'benchmarks',
+  ext_modules = cythonize("*.py", language_level=3),
+)