~sdague/onehundredscopes/unity-lens-pidgin

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Sean Dague
  • Date: 2012-05-06 15:39:22 UTC
  • Revision ID: sean@dague.net-20120506153922-8o6ca4wz49sdso7r
initial dump of pidgin lens. This only currently can search online buddies,
still can't yet open the conversation

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
#
 
3
from distutils.core import setup
 
4
from DistUtilsExtra.command import *
 
5
 
 
6
setup(name="unity-lens-pidgin",
 
7
      version="0.1",
 
8
      author="Sean Dague",
 
9
      author_email="sean@dague.net",
 
10
      url="http://launchpad.net/onehundredscopes",
 
11
      license="GNU General Public License (GPL)",
 
12
      data_files=[
 
13
    ('share/dbus-1/services', ['unity-lens-pidgin.service']),
 
14
    ('share/unity/lenses/pidgin', ['pidgin.lens']),
 
15
    ('share/unity/lenses/pidgin', ['media/lens-nav-pidgin.svg']),
 
16
    ('lib/unity-lens-pidgin', ['src/unity-lens-pidgin']),
 
17
    ], cmdclass={"build":  build_extra.build_extra, })