forked from auracaster/pyalsaaudio
r820 | anthony | 2004-10-04 15:28:33 +0200 (Mon, 04 Oct 2004) | 2 lines Import of PyAlsaAudio, by Casper Wilstrup (cwi@unispeed.dk) git-svn-id: svn://svn.code.sf.net/p/pyalsaaudio/code/trunk@2 ec2f30ec-7544-0410-870e-f70ca00c83f0
15 lines
344 B
Python
15 lines
344 B
Python
from distutils.core import setup
|
|
from distutils.extension import Extension
|
|
|
|
setup(
|
|
name = "alsaaudio",
|
|
version = "0.1",
|
|
description = "alsa bindings",
|
|
author = "Casper Wilstrup",
|
|
author_email="cwi@unispeed.com",
|
|
ext_modules=[Extension("alsaaudio",["alsaaudio.c"],libraries=['asound'])
|
|
]
|
|
)
|
|
|
|
|