aboutsummaryrefslogtreecommitdiffstats
path: root/python/setup.py
blob: beb5c533d4c46265592da496eab9e20ea553d969 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#@+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/.libs",],
                             include_dirs=["../include",],
                             libraries=["fuse",],
                             ),
                   ],
      py_modules=["fuse"],
      )

#@-node:@file setup.py
#@-leo