File: setup.py

package info (click to toggle)
python-osd 0.2.12-1.2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 124 kB
  • ctags: 120
  • sloc: ansic: 447; python: 283; makefile: 47
file content (16 lines) | stat: -rwxr-xr-x 423 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env python

from distutils.core import setup, Extension

setup (name = "pyosd",
       version = "0.2.12",
       description = "Python wrapper for libosd",
       url = "http://repose.cx/pyosd/",
       author = "Damien Elmes",
       author_email = "pyosd@repose.cx",
       packages = ['pyosd'],
       ext_modules = \
       [Extension("_pyosd", ["_pyosd.c"],
                  libraries=["xosd"])]
      )