aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorDavid McNab <david@rebirthing.co.nz>2003-12-12 04:21:31 +0000
committerDavid McNab <david@rebirthing.co.nz>2003-12-12 04:21:31 +0000
commit2ab18db8db3a449bba4371332deeafd738d29298 (patch)
tree6fb4409a7d2612f5b663401113ecd61df6906795 /python
parent8bf626340fba8a87fab976193d4d0f3727ff0279 (diff)
downloadlibfuse-2ab18db8db3a449bba4371332deeafd738d29298.tar.gz
oops - forgot to add fuse/python/setup.py before - here it is!
Diffstat (limited to 'python')
-rw-r--r--python/setup.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/python/setup.py b/python/setup.py
new file mode 100644
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