File: setup.py

package info (click to toggle)
py-libmpdclient 0.11.1-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny, squeeze, wheezy
  • size: 48 kB
  • ctags: 47
  • sloc: python: 261; makefile: 33
file content (12 lines) | stat: -rwxr-xr-x 307 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/python

from distutils.core import setup
setup(
    name="py-libmpdclient",
    version="0.11.1",
    description="Python client library for mpd (Music Player Daemon)",
    author="Nick Welch",
    author_email="mack@incise.org",
    license="public domain",
    py_modules=['mpdclient2'],
    )