~markjtully/+junk/rhythmbox-scope

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Mark Tully
  • Date: 2011-08-23 00:31:59 UTC
  • Revision ID: markjtully@gmail.com-20110823003159-uzlpczc4qhezfkri
Tags: 0.1
Version 0.1:
- Search your web history through a Unity Lens
- Searches through the 1000 most recent and the 1000 most popular urls logged to Zeitgeist
- Searches in both page title and page url
- Displays each result through a UnityHorizontalRenderer using website favicon as image

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-web-history",
 
7
      version="0.1",
 
8
      author="Mark Tully",
 
9
      author_email="markjtully@gmail.com",
 
10
      url="http://launchpad.net/unity-web-history-lens",
 
11
      license="GNU General Public License Version 2 (GPLv2)",
 
12
      data_files=[
 
13
    ('share/unity/places', ['webhistory.place']),
 
14
    ('share/dbus-1/services', ['unity-lens-web-history.service']),
 
15
    ('lib/unity-lens-music', ['unity-web-history-daemon.py']),
 
16
    ],
 
17
      cmdclass = { "build" :  build_extra.build_extra,
 
18
                 }
 
19
)