~ubuntu-branches/ubuntu/raring/unity-scope-gdrive/raring-proposed

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python
#
from distutils.core import setup
from DistUtilsExtra.command import build_extra
import subprocess
import build_i18n_ext as build_i18n

setup(name="unity-scope-gdrive",
      version="0.7",
      author="Alberto Mardegan",
      author_email="alberto.mardegan@canonical.com",
      url="http://launchpad.net/unity-scope-gdrive",
      license="GNU General Public License v3 (GPLv3)",
      data_files=[
    ('lib/unity-lens-files', ['unity-scope-gdrive']),
    ('share/applications', ['unity-scope-gdrive.desktop']),
    ('share/dbus-1/services', ['unity-scope-gdrive.service']),
    ('share/icons/hicolor/48x48/apps', ['unity-scope-gdrive.png']),
    ('share/unity/lenses/files', ['gdrive.scope']),
    ], cmdclass={"build":  build_extra.build_extra,
                 "build_i18n": build_i18n.build_i18n,})