mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-08-21 08:14:00 +08:00
37e173acdc
* compile flag for cython * fix more setups * bump cereal * reenable mac build * don't let that fail the build Co-authored-by: Adeeb Shihadeh <adeebshihadeh@gmail.com> old-commit-hash: 8e0bb6a7cee869b9aa6a724b20ab8d79141eaad4
12 lines
468 B
Python
12 lines
468 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"],
|
|
extra_compile_args=["-Wno-nullability-completeness"])))
|