2024-01-05 13:04:01 -05:00
|
|
|
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'
|
|
|
|
],
|
2024-01-05 16:29:23 -05:00
|
|
|
#ext_modules = cythonize("py/hexagram/*.pyx"),
|
2024-01-05 13:04:01 -05:00
|
|
|
)
|