Go to the documentation of this file. 2 Created on Oct 19, 2015 8 from setuptools
import setup
9 from setuptools
import Extension
11 from distutils.core
import setup
12 from distutils.extension
import Extension
14 from Cython.Distutils
import build_ext
16 modules = [Extension(
"pose", [
"pose.pyx"]),
17 Extension(
"filterTools", [
"filterTools.pyx"]),
18 Extension(
"plotTools", [
"plotTools.pyx"]),
19 Extension(
"ISToolsData", [
"ISToolsData.pyx"]),
20 Extension(
"ISToolsDataSorted", [
"ISToolsDataSorted.pyx"]),
26 name =
'InertialSenseTools',
27 cmdclass = {
'build_ext': build_ext},