Skip to content

Instantly share code, notes, and snippets.

@svvitale
Created June 14, 2016 20:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save svvitale/49e19bfbec3b0ca100b4f1762981d855 to your computer and use it in GitHub Desktop.
Save svvitale/49e19bfbec3b0ca100b4f1762981d855 to your computer and use it in GitHub Desktop.
setup.py with -isystem includes
from setuptools import setup
from distutils.core import Extension
from distutils.command.build import build
import os
from subprocess import call
import multiprocessing
from glob import glob
nxppy = Extension('nxppy',
define_macros = [('LINUX',None),('NATIVE_C_CODE',None),('NXPBUILD_CUSTOMER_HEADER_INCLUDED',None),('NXPBUILD__PHHAL_HW_RC523',None)],
extra_compile_args=['-O0',
'-std=gnu99',
'-isystemnxprdlib/NxpRdLib/intfs',
'-isystemnxprdlib/NxpRdLib/types',
'-isystemnxprdlib/NxpRdLib',
'-isystemlinux/intfs',
'-isystemlinux/comps/phbalReg/src/Linux',
'-isystemlinux/shared',
'-isystemexamples/NfcrdlibEx4_MIFAREClassic/intfs',
'-isystemnxprdlib/NxpRdLib/comps/phbalReg/src/Stub',
'-isystemlinux/comps/phPlatform/src/Posix',
'-isystemlinux/comps/phOsal/src/Posix'
],
extra_link_args=['build/linux/libNxpRdLibLinuxPN512.a','-lpthread','-lrt'],
sources = ['Mifare.c', 'nxppy.c']
)
class build_nxppy(build):
def run(self):
def compile(extra_preargs=None):
call( './get_nxpRdLib.sh', shell=True )
self.execute(compile, [], 'compiling NxpRdLib')
# Run the rest of the build
build.run(self)
short_description = 'A python extension for interfacing with the NXP PN512 NFC Reader. Targeted specifically for Raspberry Pi and the EXPLORE-NFC module'
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except:
long_description = short_description
setup (name = 'nxppy',
version = '1.3.2',
description = short_description,
long_description = long_description,
author = 'Scott Vitale',
author_email = 'svvitale@gmail.com',
url = 'http://github.com/svvitale/nxppy',
test_suite = 'nose.collector',
setup_requires=['nose>=1.0'],
ext_modules = [nxppy],
cmdclass = {'build': build_nxppy})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment