~motoster/onehundredscopes/grooveshark-precise-simple_preview

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
from DistUtilsExtra.command import *

setup(name="unity-scope-grooveshark",
      version="0.1",
      author="David Calle",
      author_email="davidc@framli.eu",
      url="http://launchpad.net/onehundredscopes",
      license="GNU General Public License (GPL)",
      data_files=[
    ('lib/unity-scope-grooveshark', ['src/unity-scope-grooveshark']),
    ('share/dbus-1/services', ['unity-scope-grooveshark.service']),
    ('share/unity/lenses/music', ['grooveshark.scope']),
    ], cmdclass={"build":  build_extra.build_extra, })