Import from divmod. Original log message:

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
This commit is contained in:
larsimmisch
2008-01-24 11:20:35 +00:00
parent 335500fc1d
commit 47795bcc72
6 changed files with 605 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
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'])
]
)