From 2ab18db8db3a449bba4371332deeafd738d29298 Mon Sep 17 00:00:00 2001 From: David McNab Date: Fri, 12 Dec 2003 04:21:31 +0000 Subject: [PATCH] oops - forgot to add fuse/python/setup.py before - here it is! --- python/setup.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 python/setup.py 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 -- 2.30.2