File tree 1 file changed +7
-4
lines changed
1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python3
2
2
3
3
import sys
4
- import numpy as np
5
4
5
+ import numpy as np
6
6
from setuptools import Extension , find_packages , setup
7
7
8
8
if sys .version_info < (3 , 6 ):
@@ -44,8 +44,11 @@ def get_version_and_cmdclass(package_name):
44
44
]
45
45
}
46
46
47
- triangulation_module = Extension ("adaptive.triangulation" , sources = ['./adaptive/learner/triangulation.c' ],
48
- include_dirs = [np .get_include ()])
47
+ triangulation_module = Extension (
48
+ "adaptive.triangulation" ,
49
+ sources = ['./adaptive/learner/triangulation.c' ],
50
+ include_dirs = [np .get_include ()],
51
+ )
49
52
50
53
setup (
51
54
name = "adaptive" ,
@@ -66,5 +69,5 @@ def get_version_and_cmdclass(package_name):
66
69
install_requires = install_requires ,
67
70
extras_require = extras_require ,
68
71
cmdclass = cmdclass ,
69
- ext_modules = [triangulation_module ]
72
+ ext_modules = [triangulation_module ],
70
73
)
You can’t perform that action at this time.
0 commit comments