We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 197557f commit fc9d7dbCopy full SHA for fc9d7db
1 file changed
setup.py
@@ -13,9 +13,16 @@
13
version=__version__,
14
package_dir={'': 'src'},
15
py_modules=['rtmixer'],
16
- setup_requires=['CFFI>=1.4.0', 'pa_ringbuffer'],
17
cffi_modules=['rtmixer_build.py:ffibuilder'],
18
- install_requires=['sounddevice>0.3.6', 'pa_ringbuffer'],
+ setup_requires=[
+ 'CFFI>=1.4.0',
19
+ 'pa_ringbuffer', # for cdef()
20
+ ],
21
+ install_requires=[
22
+ 'CFFI>=1', # for _cffi_backend
23
+ 'pa_ringbuffer', # for init()
24
+ 'sounddevice>0.3.6',
25
26
author='Matthias Geier',
27
author_email='Matthias.Geier@gmail.com',
28
description='Reliable low-latency audio playback and recording',
0 commit comments