From: David McNab Date: Fri, 12 Dec 2003 04:21:31 +0000 (+0000) Subject: oops - forgot to add fuse/python/setup.py before - here it is! X-Git-Tag: fuse_1_1_pre1~11 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=2ab18db8db3a449bba4371332deeafd738d29298;p=qemu-gpiodev%2Flibfuse.git oops - forgot to add fuse/python/setup.py before - here it is! --- 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