File: setup.py

package info (click to toggle)
python-oss 0.0.0.20010624-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 388 kB
  • ctags: 206
  • sloc: ansic: 1,351; makefile: 63; sh: 14; python: 8
file content (10 lines) | stat: -rw-r--r-- 348 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env python

from distutils.core import setup, Extension
setup(name="python-oss",
      version="0.0.0.20010624",
      description="Open Sound System (OSS) interface",
      author="Tim Butler",
      author_email="tim@netbox.com",
      url="http://net.indra.com/~tim/ossmodule/",
      ext_modules=[Extension("oss", ["ossmodule.c"])])