-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
21 lines (20 loc) · 984 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from distutils.core import setup, Extension
setup(name = "PyAudioMixer",
author = "Nick Vahalik",
author_email = "[email protected]",
version = "0.3.0",
url = "https://github.com/nvahalik/PyAudioMixer",
py_modules = ['PyAudioMixer'],
description = "An advanced software mixer for sound playback and recording",
long_description = '''
This module implements a realtime sound mixer suitable for use in
games or other audio applications. It supports loading sounds in
uncompressed WAV format and also MP3 format. It can mix several
sounds together during playback. The volume and position of each
sound can be finely controlled. Sounds are automatically resampled
and stereo converted for correct playback. Samples can also be looped
any number of times. Longer sounds can be streamed from a file to
save memory. In addition, the mixer supports audio input during
playback (if supported in pyaudio with your sound card).
''',
)