-
Notifications
You must be signed in to change notification settings - Fork 490
/
setup.py
81 lines (68 loc) · 2.39 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
"""Python setup script for bluepy"""
from setuptools.command.build_py import build_py
from setuptools import setup
import subprocess
import shlex
import sys
import os
VERSION='1.3.0'
def pre_install():
"""Do the custom compiling of the bluepy-helper executable from the makefile"""
try:
print("Working dir is " + os.getcwd())
with open("bluepy/version.h","w") as verfile:
verfile.write('#define VERSION_STRING "%s"\n' % VERSION)
for cmd in [ "make -C ./bluepy clean", "make -C bluepy -j1" ]:
print("execute " + cmd)
msgs = subprocess.check_output(shlex.split(cmd), stderr=subprocess.STDOUT)
except subprocess.CalledProcessError as e:
print("Failed to compile bluepy-helper. Exiting install.")
print("Command was " + repr(cmd) + " in " + os.getcwd())
print("Return code was %d" % e.returncode)
print("Output was:\n%s" % e.output)
sys.exit(1)
class my_build_py(build_py):
def run(self):
pre_install()
build_py.run(self)
setup_cmdclass = {
'build_py' : my_build_py,
}
# Force package to be *not* pure Python
# Discusssed at issue #158
try:
from wheel.bdist_wheel import bdist_wheel
class BluepyBdistWheel(bdist_wheel):
def finalize_options(self):
bdist_wheel.finalize_options(self)
self.root_is_pure = False
setup_cmdclass['bdist_wheel'] = BluepyBdistWheel
except ImportError:
pass
setup (
name='bluepy',
version=VERSION,
description='Python module for interfacing with BLE devices through Bluez',
author='Ian Harvey',
author_email='[email protected]',
url='https://github.com/IanHarvey/bluepy',
download_url='https://github.com/IanHarvey/bluepy/tarball/v/%s' % VERSION,
keywords=[ 'Bluetooth', 'Bluetooth Smart', 'BLE', 'Bluetooth Low Energy' ],
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
packages=['bluepy'],
package_data={
'bluepy': ['bluepy-helper', '*.json', 'bluez-src.tgz', 'bluepy-helper.c', 'version.h', 'Makefile']
},
cmdclass=setup_cmdclass,
entry_points={
'console_scripts': [
'thingy52=bluepy.thingy52:main',
'sensortag=bluepy.sensortag:main',
'blescan=bluepy.blescan:main',
]
}
)