Switch to unified view

a b/setup.py
1
#!/usr/bin/env python
2
#
3
from distutils.core import setup
4
import subprocess
5
#import build_i18n_ext as build_i18n
6
7
setup(name="unity-scope-recoll",
8
      version="0.1",
9
      author="Jean-Francois Dockes",
10
      author_email="jfd@recoll.corg",
11
      url="http://www.recoll.org",
12
      license="GNU General Public License v3 (GPLv3)",
13
      data_files=[
14
    ('share/unity-scopes/recollscope', ['unity_recoll_daemon.py']),
15
    ('share/unity-scopes/recollscope', ['__init__.py']),
16
    ('share/applications', ['unity-scope-recoll.desktop']),
17
    ('share/dbus-1/services', ['unity-scope-recoll.service']),
18
    ('share/icons/hicolor/48x48/apps', ['unity-scope-recoll.png']),
19
    ('share/unity/scopes/files', ['recoll.scope']),
20
    ('share/icons/unity-icon-theme/places/svg', ['service-recoll.svg']),
21
    ])