forked from airgproducts/pybluez2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·89 lines (75 loc) · 3.01 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
#!/usr/bin/env python
import os
import re
import sys
from setuptools import setup, Extension
# This marks the wheel as always being platform-specific and not pure Python
# See: https://stackoverflow.com/q/45150304/145504
try:
from wheel.bdist_wheel import bdist_wheel as _bdist_wheel
class impure_bdist_wheel(_bdist_wheel):
def finalize_options(self):
_bdist_wheel.finalize_options(self)
self.root_is_pure = False
except ImportError:
# If the wheel module isn't available, no problem -- we're not doing a
# bdist_wheel in that case anyway.
impure_bdist_wheel = None
packages = ['bluetooth']
package_dir = dict()
ext_modules = list()
install_requires = list()
package_data = dict()
eager_resources = list()
zip_safe = True
if sys.platform == 'win32':
ext_modules.append(Extension('bluetooth.windows.msbt',
libraries=["WS2_32", "Bthprops"],
sources=['bluetooth\\windows\\msbt.c']))
packages.append("bluetooth.windows")
elif sys.platform.startswith('linux'):
mod1 = Extension('bluetooth._bluetooth',
libraries = ['bluetooth'],
#extra_compile_args=['-O0'],
sources = ['bluetooth/linux/bluez/btmodule.c', 'bluetooth/linux/bluez/btsdp.c'])
ext_modules.append(mod1)
elif sys.platform.startswith("darwin"):
packages.append("bluetooth.macos")
packages.append("bluetooth.macos.btsocket")
install_requires += ['pyobjc-core>=6', 'pyobjc-framework-Cocoa>=6', 'pyobjc-framework-libdispatch']
else:
raise Exception("This platform (%s) is currently not supported by pybluez."
% sys.platform)
with open("bluetooth/version.py") as infile:
version = re.findall(r'"([0-9.]+)"', infile.read())[0]
with open("README.md") as infile:
long_description = infile.read()
setup(name='pybluez2',
version=version,
description='Bluetooth Python extension module',
author="airgproducts",
author_email="[email protected]",
ext_modules=ext_modules,
packages=packages,
python_requires=">=3.6",
classifiers=['Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Communications'],
url="https://github.com/airgproducts/pybluez2",
long_description=long_description,
maintainer='airgproducts',
license='GPL',
package_dir=package_dir,
install_requires=install_requires,
package_data=package_data,
eager_resources=eager_resources,
zip_safe=zip_safe,
cmdclass={'bdist_wheel': impure_bdist_wheel},
)