mirror of
https://github.com/MoreTore/openpilot.git
synced 2026-09-14 19:44:12 +08:00
f92c30b164
* fix build warnings
* cython fixes
* cleanup transformations build
* little more
old-commit-hash: 96b637737b
11 lines
376 B
Python
11 lines
376 B
Python
from distutils.core import Extension, setup
|
|
|
|
from Cython.Build import cythonize
|
|
|
|
from common.cython_hacks import BuildExtWithoutPlatformSuffix
|
|
|
|
setup(name='Simple Kalman Implementation',
|
|
cmdclass={'build_ext': BuildExtWithoutPlatformSuffix},
|
|
ext_modules=cythonize(Extension("simple_kalman_impl",
|
|
["simple_kalman_impl.pyx"])))
|