oops - forgot to add fuse/python/setup.py before - here it is!
authorDavid McNab <david@rebirthing.co.nz>
Fri, 12 Dec 2003 04:21:31 +0000 (04:21 +0000)
committerDavid McNab <david@rebirthing.co.nz>
Fri, 12 Dec 2003 04:21:31 +0000 (04:21 +0000)
python/setup.py [new file with mode: 0644]

diff --git a/python/setup.py b/python/setup.py
new file mode 100644 (file)
index 0000000..632c468
--- /dev/null
@@ -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