forked from pybluez/pybluez
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
134 lines (117 loc) · 5.41 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
#!/usr/bin/env python
from setuptools import setup, Extension
import sys
import platform
import os
pack_dir = dict()
mods = list()
install_req = list()
def find_MS_SDK():
candidate_roots = (os.getenv('ProgramFiles'), os.getenv('ProgramW6432'),
os.getenv('ProgramFiles(x86)'))
if sys.version < '3.3':
MS_SDK = r'Microsoft SDKs\Windows\v6.0A' # Visual Studio 9
if sys.version >= '3.5':
MS_SDK = r'Microsoft SDKs\Windows\v10.0A' # Visual Studio 14
else:
MS_SDK = r'Microsoft SDKs\Windows\v7.0A' # Visual Studio 10
candidate_paths = (MS_SDK,
'Microsoft Platform SDK for Windows XP',
'Microsoft Platform SDK')
for candidate_root in candidate_roots:
for candidate_path in candidate_paths:
candidate_sdk = os.path.join(candidate_root, candidate_path)
if os.path.exists(candidate_sdk):
return candidate_sdk
if sys.platform == 'win32':
PSDK_PATH = find_MS_SDK()
if PSDK_PATH is None:
raise SystemExit("Could not find the Windows Platform SDK")
lib_path = os.path.join(PSDK_PATH, 'Lib')
if '64' in platform.architecture()[0]:
lib_path = os.path.join(lib_path, 'x64')
mods.append(Extension('bluetooth._msbt',
include_dirs=["%s\\Include" % PSDK_PATH, ".\\port3"],
library_dirs=[lib_path],
libraries=["WS2_32", "Irprops"],
sources=['msbt\\_msbt.c']))
# widcomm
WC_BASE = os.path.join(os.getenv('ProgramFiles'), r"Widcomm\BTW DK\SDK")
if os.path.exists(WC_BASE):
mods.append(Extension('bluetooth._widcomm',
include_dirs=["%s\\Inc" % WC_BASE, ".\\port3"],
define_macros=[('_BTWLIB', None)],
library_dirs=["%s\\Release" % WC_BASE, "%s\\Lib" % PSDK_PATH],
libraries=["WidcommSdklib", "ws2_32", "version", "user32",
"Advapi32", "Winspool", "ole32", "oleaut32"],
sources=["widcomm\\_widcomm.cpp",
"widcomm\\inquirer.cpp",
"widcomm\\rfcommport.cpp",
"widcomm\\rfcommif.cpp",
"widcomm\\l2capconn.cpp",
"widcomm\\l2capif.cpp",
"widcomm\\sdpservice.cpp",
"widcomm\\util.cpp"]))
elif sys.platform.startswith('linux'):
mod1 = Extension('bluetooth._bluetooth',
include_dirs = ["./port3",],
libraries = ['bluetooth'],
#extra_compile_args=['-O0'],
sources = ['bluez/btmodule.c', 'bluez/btsdp.c'])
mods = [ mod1 ]
elif sys.platform.startswith("darwin"):
# On Mac, install LightAquaBlue framework
# if you want to install the framework somewhere other than /Library/Frameworks
# make sure the path is also changed in LightAquaBlue.py (in src/mac)
if "install" in sys.argv:
pack_dir = { 'lightblue': 'osx' }
# install_req = ['pyobjc>=3.1'] this version is not on pypi yet
# Change to LightAquaBlue framework dir.
os.chdir("osx/LightAquaBlue")
#
# NOTE: our solution is based on these posts:
# - http://stackoverflow.com/questions/22279913/how-to-install-either-pybluez-or-lightblue-on-osx-10-9-mavericks
# - https://github.com/0-1-0/lightblue-0.4/issues/7
# We need to verify that the arch(itecture) param is specified accurately
# otherwise the compilation will fail.
#
arch = None
if "NATIVE_ARCH_ACTUAL" in os.environ:
arch = "$(NATIVE_ARCH_ACTUAL)"
elif "64bit" in platform.architecture():
arch = "x86_64"
elif "32bit" in platform.architecture():
arch = "i386"
else:
raise Exception("Unrecognized architecture")
build_str = "xcodebuild install -arch '%s' -target LightAquaBlue -configuration Release DSTROOT=/ INSTALL_PATH=/Library/Frameworks DEPLOYMENT_LOCATION=YES" % (arch)
os.system(build_str)
# Change back to top-level (need this otherwise setup.py script gets confused on install?).
os.chdir("../..")
mods = []
else:
raise Exception("This platform (%s) is currently not supported by pybluez."
% sys.platform)
setup(name='PyBluez',
version='0.22',
description='Bluetooth Python extension module',
author="Albert Huang",
author_email="[email protected]",
url="http://karulis.github.io/pybluez/",
ext_modules=mods,
packages=["bluetooth"],
# for the python cheese shop
classifiers=['Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Communications'],
download_url='https://github.com/karulis/pybluez',
long_description='Bluetooth Python extension module to allow Python "\
"developers to use system Bluetooth resources. PyBluez works "\
"with GNU/Linux and Windows XP.',
maintainer='Piotr Karulis',
license='GPL',
extras_require={'ble': ['gattlib==0.20150805']},
install_requires=install_req)