summaryrefslogtreecommitdiff
path: root/docs/examples/userguide/sharing_declarations/setup_pyx.py
diff options
context:
space:
mode:
Diffstat (limited to 'docs/examples/userguide/sharing_declarations/setup_pyx.py')
-rw-r--r--docs/examples/userguide/sharing_declarations/setup_pyx.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/examples/userguide/sharing_declarations/setup_pyx.py b/docs/examples/userguide/sharing_declarations/setup_pyx.py
new file mode 100644
index 000000000..505b53e9d
--- /dev/null
+++ b/docs/examples/userguide/sharing_declarations/setup_pyx.py
@@ -0,0 +1,4 @@
+from setuptools import setup
+from Cython.Build import cythonize
+
+setup(ext_modules=cythonize(["landscaping.pyx", "shrubbing.pyx"]))