Initial go at Cythonising the cluster
This commit is contained in:
parent
5f74d6de02
commit
a69c0bf2e1
2 changed files with 15 additions and 0 deletions
15
setup.py
Normal file
15
setup.py
Normal 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"),
|
||||
)
|
Loading…
Add table
Reference in a new issue