pylib/setup.py
Go to the documentation of this file.
1 '''
2 Created on Oct 19, 2015
3 
4 @author: Walter
5 '''
6 
7 try:
8  from setuptools import setup
9  from setuptools import Extension
10 except ImportError:
11  from distutils.core import setup
12  from distutils.extension import Extension
13 
14 from Cython.Distutils import build_ext
15 
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"]),
21 # Extension("ISDataAnalytics", ["ISDataAnalytics.pyx"]),
22 # Extension("ISToolsPlot", ["ISToolsPlot.pyx"]),
23  ]
24 
25 setup(
26  name = 'InertialSenseTools',
27  cmdclass = {'build_ext': build_ext},
28  ext_modules = modules
29  )


inertial_sense_ros
Author(s):
autogenerated on Sun Feb 28 2021 03:17:58