-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 718 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 718 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from setuptools import setup, Extension
ext = [Extension('matrixio_hal.matrixio_cpp_hal',
['matrixio_hal/matrixio_cpp_hal.pyx'],
libraries=['matrix_creator_hal'],
extra_compile_args=['-std=c++11'],
language='c++')
]
setup(
name='python-matrixio-hal',
version='1.1.0',
description='Python HAL for the Matrix Creator / Voice wrapping the C++ drivers',
author='cmetz',
author_email='christoph.metz@gulp.de',
url='https://github.com/cmetz/python-matrixio-hal',
license='MIT',
packages=['matrixio_hal'],
setup_requires=[
'setuptools>=18.0',
'cython'
],
ext_modules=ext,
zip_safe=False
)