File: setup.py

package info (click to toggle)
python-oss 0.0.0.20010624-3
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 388 kB
  • ctags: 218
  • sloc: ansic: 1,351; python: 110; makefile: 98
file content (23 lines) | stat: -rw-r--r-- 836 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/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 for Python",
      long_description="""\
The oss module is an interface to the Open Sound System from the Python programming language.

The Open Sound System is a UNIX device driver and API that allows you to

 * record and play digitized audio,
 * control input and output volume levels,
 * select recording sources, and
 * generate synthesizer commands and midi bytes controlled by a
   low-level sequencer.
""",
      author="Tim Butler",
      author_email="tim@netbox.com",
      maintainer="Tommi Virtanen",
      maintainer_email="tv@debian.org",
      url="http://net.indra.com/~tim/ossmodule/",
      ext_modules=[Extension("oss", ["ossmodule.c"])])