~submarine/unity-scope-googlenews/trunk

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from distutils.core import setup
from DistUtilsExtra.command import *

setup(name='unity-scope-googlenews',
      version='0.1',
      author='David Callé',
      author_email='davidc@framli.eu',
      url='http://launchpad.net/ubuntu-scopes',
      license='GNU General Public License (GPL)',
      data_files=[
    ('share/dbus-1/services', ['data/unity-scope-googlenews.service']),
    ('share/unity-scopes/googlenews', ['src/unity_googlenews_daemon.py']),
    ('share/unity-scopes/googlenews', ['src/__init__.py']),
    ], cmdclass={'build':  build_extra.build_extra,
                 'build_i18n': build_i18n.build_i18n,})