File: setup.py

package info (click to toggle)
python-daap 0.7.1-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, squeeze, wheezy
  • size: 156 kB
  • ctags: 122
  • sloc: python: 602; ansic: 377; makefile: 42; sh: 13
file content (13 lines) | stat: -rw-r--r-- 373 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
from distutils.core import setup, Extension

setup (
  name = "PythonDaap",
  version = "0.7.1",
  author = "Tom Insam",
  author_email = "tom@jerakeen.org",
  url = "http://jerakeen.org/code/pythondaap",
  description = "a python daap client library",
  py_modules = ['daap'],
  ext_modules = [Extension('md5daap',sources=['md5module.c', 'md5.c'])],
  license = "LGPL",
)