1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
#!/usr/bin/env python
import os
from distutils.core import setup
from distutils.sysconfig import get_python_lib
setup(name="mc-foo",
description="an advanced, learning, Ogg/MP3 jukebox",
long_description="""
MC Foo is an advanced, adaptive and learning Ogg/MP3 jukebox server.
-continuous music playing
-learns what music you like and dislike
-no static playlists; uses a playqueue you can view and alter
-can be controlled from any hosts and even with
infrared remote controllers
-allows multiple user/preference profiles,
according to whose listening and his or her mood
Note that MC Foo is in the early stages of development, and not
everything works yet.
""",
author="Tommi Virtanen",
author_email="tv@debian.org",
url="http://mc-foo.sourceforge.net/",
licence="GNU GPL",
package_dir={"": "lib"},
packages=[
"McFoo", "McFoo.backend",
"McFoo.commands", "McFoo.gui", "McFoo.server",
"McFoo.tap",
],
scripts=["bin/mc-foo"],
data_files=[
(os.path.join(get_python_lib(), 'McFoo'),
["lib/McFoo/plugins.tml"])
],
)
|