-
Notifications
You must be signed in to change notification settings - Fork 155
Expand file tree
/
Copy pathsetup.py
More file actions
69 lines (61 loc) · 2.04 KB
/
setup.py
File metadata and controls
69 lines (61 loc) · 2.04 KB
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
import os
import platform
from setuptools import setup
MACOSX_VERSIONS = '.'.join([
'macosx_10_6_x86_64', # for compatibility with pip < v21
'macosx_10_6_universal2',
])
# environment variables for cross-platform package creation
system = os.environ.get('PYTHON_SOUNDDEVICE_PLATFORM', platform.system())
machine = platform.machine().lower()
architecture0 = os.environ.get('PYTHON_SOUNDDEVICE_ARCHITECTURE',
'arm64' if machine in ['arm64', 'aarch64'] else platform.architecture()[0])
if system == 'Darwin':
libname = 'libportaudio.dylib'
elif system == 'Windows':
libname = 'libportaudio' + architecture0 + '.dll'
libname_asio = 'libportaudio' + architecture0 + '-asio.dll'
else:
libname = None
if libname:
packages = ['_sounddevice_data']
package_data = {'_sounddevice_data': ['portaudio-binaries/' + libname,
'portaudio-binaries/README.md']}
if system == 'Windows':
package_data['_sounddevice_data'].append(
'portaudio-binaries/' + libname_asio)
zip_safe = False
else:
packages = None
package_data = None
zip_safe = True
try:
from wheel.bdist_wheel import bdist_wheel
except ImportError:
cmdclass = {}
else:
class bdist_wheel_half_pure(bdist_wheel):
"""Create OS-dependent, but Python-independent wheels."""
def get_tag(self):
if system == 'Darwin':
oses = MACOSX_VERSIONS
elif system == 'Windows':
if architecture0 == 'arm64':
oses = 'win_arm64'
elif architecture0 == '32bit':
oses = 'win32'
else:
oses = 'win_amd64'
else:
oses = 'any'
return 'py3', 'none', oses
cmdclass = {'bdist_wheel': bdist_wheel_half_pure}
setup(
package_dir = {'': 'src'},
py_modules=['sounddevice'],
packages=packages,
package_data=package_data,
zip_safe=zip_safe,
cffi_modules=['sounddevice_build.py:ffibuilder'],
cmdclass=cmdclass,
)