~ubuntu-branches/ubuntu/precise/rhythmbox-ubuntuone/precise-proposed

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Package Import Robot
  • Author(s): Rodney Dawes
  • Date: 2012-02-03 17:51:00 UTC
  • Revision ID: package-import@ubuntu.com-20120203175100-oethgj2ksx2b1yef
Tags: upstream-2.99.3
ImportĀ upstreamĀ versionĀ 2.99.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/python
 
2
"""Setup script for Ubuntu One Music Store plug-in for Rhythmbox."""
 
3
 
 
4
import DistUtilsExtra.auto
 
5
 
 
6
 
 
7
DistUtilsExtra.auto.setup(
 
8
    name='rhythmbox-ubuntuone',
 
9
    version='2.99.3',
 
10
    license='LGPL v3',
 
11
    author='Ubuntu One Developers',
 
12
    author_email='ubuntuone-users@lists.launchpad.net',
 
13
    description='Ubuntu One Rhythmbox plug-in',
 
14
    long_description=('A plug-in to integrate Ubuntu One in Rhythmbox.'),
 
15
    url='https://launchpad.net/rhythmbox-ubuntuone',
 
16
    data_files=[('lib/rhythmbox/plugins/ubuntuone',
 
17
                 ['ubuntuone/ubuntuone.py',
 
18
                  'ubuntuone/MusicStoreWidget.py',
 
19
                  ])],
 
20
    )