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