2021-07-30 11:17:19 +00:00
|
|
|
#! /usr/bin/python3
|
2013-10-20 19:35:45 +00:00
|
|
|
from distutils.core import setup, Extension
|
|
|
|
|
|
|
|
|
|
m_spidev = Extension('spidev',
|
|
|
|
|
sources = ['spidev_py.c'],
|
2021-08-01 12:42:29 +00:00
|
|
|
define_macros = [("DEBUG", "1")],
|
2021-07-30 17:08:04 +00:00
|
|
|
extra_compile_args=['-std=c99', '-Wno-parentheses', '-Wno-pointer-to-int-cast'],
|
2013-10-20 19:35:45 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
setup (name = 'spidev',
|
2021-07-30 11:17:19 +00:00
|
|
|
version = '1.1',
|
2013-10-20 19:35:45 +00:00
|
|
|
description = 'spidev transfers',
|
|
|
|
|
ext_modules = [m_spidev],
|
|
|
|
|
)
|