projects
/
qemu-gpiodev
/
libfuse.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8bf6263
)
oops - forgot to add fuse/python/setup.py before - here it is!
author
David McNab
<david@rebirthing.co.nz>
Fri, 12 Dec 2003 04:21:31 +0000
(
04:21
+0000)
committer
David McNab
<david@rebirthing.co.nz>
Fri, 12 Dec 2003 04:21:31 +0000
(
04:21
+0000)
python/setup.py
[new file with mode: 0644]
patch
|
blob
diff --git a/python/setup.py
b/python/setup.py
new file mode 100644
(file)
index 0000000..
632c468
--- /dev/null
+++ b/
python/setup.py
@@ -0,0
+1,20
@@
+#@+leo-ver=4
+#@+node:@file setup.py
+"""
+distutils script for FUSE python module
+"""
+
+from distutils.core import setup, Extension
+
+setup(name="fuse",
+ version="0.1",
+ ext_modules=[Extension("_fusemodule", ["_fusemodule.c"],
+ library_dirs=["../lib",],
+ libraries=["fuse",],
+ ),
+ ],
+ py_modules=["fuse"],
+ )
+
+#@-node:@file setup.py
+#@-leo