mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-03-03 02:33:53 +08:00
6 lines
251 B
Python
6 lines
251 B
Python
|
|
from distutils.core import setup, Extension
|
||
|
|
from Cython.Build import cythonize
|
||
|
|
|
||
|
|
setup(name='CAN Packer API Implementation',
|
||
|
|
ext_modules=cythonize(Extension("packer_impl", ["packer_impl.pyx"], language="c++", extra_compile_args=["-std=c++11"])))
|