Initial go at Cythonising the cluster

This commit is contained in:
XANTRONIX Development 2024-01-05 13:04:01 -05:00
parent 5f74d6de02
commit a69c0bf2e1
2 changed files with 15 additions and 0 deletions

15
setup.py Normal file
View file

@ -0,0 +1,15 @@
from setuptools import setup
from Cython.Build import cythonize
setup(
name = 'hexagram',
version = '0.1',
description = 'A CAN bus playground',
author = 'XANTRONIX',
author_email = 'contact@xantronix.com',
package_dir = {'': 'py'},
packages = [
'hexagram'
],
ext_modules = cythonize("py/hexagram/*.pyx"),
)