mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-03-02 06:43:53 +08:00
5 lines
212 B
Python
5 lines
212 B
Python
from distutils.core import setup, Extension
|
|
from Cython.Build import cythonize
|
|
|
|
setup(name='Simple Kalman Implementation',
|
|
ext_modules=cythonize(Extension("simple_kalman_impl", ["simple_kalman_impl.pyx"]))) |