forked from svvitale/nxppy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
64 lines (53 loc) · 2.52 KB
/
setup.py
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
from setuptools import setup
from distutils.core import Extension
from distutils.command.build_ext import build_ext
import sys
from subprocess import call
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',
'-isystemnxp/nxprdlib/NxpRdLib/intfs',
'-isystemnxp/nxprdlib/NxpRdLib/types',
'-isystemnxp/nxprdlib/NxpRdLib',
'-isystemnxp/linux/intfs',
'-isystemnxp/linux/comps/phbalReg/src/Linux',
'-isystemnxp/linux/shared',
'-isystemnxp/examples/NfcrdlibEx4_MIFAREClassic/intfs',
'-isystemnxp/nxprdlib/NxpRdLib/comps/phbalReg/src/Stub',
'-isystemnxp/linux/comps/phPlatform/src/Posix',
'-isystemnxp/linux/comps/phOsal/src/Posix'
],
extra_link_args=['nxp/build/linux/libNxpRdLibLinuxPN512.a', '-lpthread', '-lrt'],
sources=['Mifare.c', 'nxppy.c']
)
# noinspection PyShadowingBuiltins
class BuildNxppy(build_ext):
def run(self):
# noinspection PyUnusedLocal
def compile(extra_preargs=None):
call('./get_nxpRdLib.sh all', shell=True)
self.execute(compile, [], 'compiling NxpRdLib')
# Run the rest of the build
build_ext.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'
# noinspection PyBroadException
try:
# noinspection PyPackageRequirements
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except:
long_description = short_description
setup(name='nxppy',
version='1.5.1',
description=short_description,
long_description=long_description,
author='Scott Vitale',
author_email='[email protected]',
url='http://github.com/svvitale/nxppy',
ext_modules=[nxppy],
cmdclass={'build_ext': BuildNxppy})