projects
/
~helmut
/
onoff.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
mpd_watcher: properly schedule all IO via gobject
[~helmut/onoff.git]
/
setup.py
1
#!/usr/bin/env python
2
3
from distutils.core import setup
4
5
setup(name="onoff",
6
author="Helmut Grohne",
7
author_email="helmut@subdivi.de",
8
requires=["dbus",
9
"gi.repository",
10
"mpd", # optional
11
"argparse", # 2.x only
12
],
13
packages=["onoff"],
14
scripts=["dbus_client.py", "dbus_service.py", "mpd_watcher.py"],
15
)