We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3631e3 commit 1886672Copy full SHA for 1886672
setup.py
@@ -35,9 +35,11 @@
35
if libname and os.path.isdir('_sounddevice_data'):
36
packages = ['_sounddevice_data']
37
package_data = {'_sounddevice_data': [libname, 'README.md']}
38
+ zip_safe = False
39
else:
40
packages = None
41
package_data = None
42
+ zip_safe = True
43
44
try:
45
from wheel.bdist_wheel import bdist_wheel
@@ -68,6 +70,7 @@ def get_tag(self):
68
70
py_modules=["sounddevice"],
69
71
packages=packages,
72
package_data=package_data,
73
+ zip_safe=zip_safe,
74
install_requires=["CFFI"],
75
extras_require={"NumPy": ["NumPy"]},
76
author="Matthias Geier",
0 commit comments