summaryrefslogtreecommitdiff
path: root/demo/setup_manual.py
diff options
context:
space:
mode:
Diffstat (limited to 'demo/setup_manual.py')
-rw-r--r--demo/setup_manual.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/demo/setup_manual.py b/demo/setup_manual.py
new file mode 100644
index 0000000..2569bb4
--- /dev/null
+++ b/demo/setup_manual.py
@@ -0,0 +1,5 @@
+from distutils.core import setup
+from distutils.extension import Extension
+setup(name='manual',
+ ext_modules=[Extension(name='manual',
+ sources=['manual.c'])])