We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5ac9156 + fdfee8c commit 14eab1aCopy full SHA for 14eab1a
2 files changed
.travis.yml
@@ -0,0 +1,19 @@
1
+language: python
2
+
3
+python:
4
+ - 2.7
5
+ - 3.5
6
+ - 3.6
7
8
+addons:
9
+ apt:
10
+ packages:
11
+ - libfuse-dev
12
13
+install:
14
+ - python setup.py build
15
16
+script:
17
+ - sudo modprobe fuse
18
+ - mkdir /tmp/foo
19
+ - python example/hello.py /tmp/foo
setup.py
@@ -93,7 +93,7 @@ def run_command(self, command):
93
# libraries=[]
94
# runtime_library_dirs=[]
95
# extra_objects, extra_compile_args, extra_link_args
96
-fusemodule = Extension('fuseparts._fusemodule', sources = ['fuseparts/_fusemodule.c'],
+fusemodule = Extension('fuseparts._fuse', sources = ['fuseparts/_fusemodule.c'],
97
include_dirs = iflags,
98
extra_compile_args = extra_cflags,
99
library_dirs = libdirs,
0 commit comments