~submarine/ubuntu-scopes/openweathermap-unique-uri

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: David Callé
  • Date: 2013-02-13 17:59:16 UTC
  • Revision ID: davidc@framli.eu-20130213175916-fr5n4ughhp5rjkc7
Generate packaging

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python3
 
2
# -*- coding: utf-8 -*-
 
3
from distutils.core import setup
 
4
from DistUtilsExtra.command import *
 
5
 
 
6
setup(name='unity-scope-openweathermap',
 
7
      version='0.1',
 
8
      author='David Callé',
 
9
      author_email='davidc@framli.eu',
 
10
      url='http://launchpad.net/ubuntu-scopes',
 
11
      license='GNU General Public License (GPL)',
 
12
      data_files=[
 
13
    ('share/dbus-1/services', ['data/unity-scope-openweathermap.service']),
 
14
    ('share/icons/unity-icon-theme/places/svg', ['data/icons/service-openweathermap.svg']),
 
15
    ('lib/ubuntu-scopes/openweathermap', ['src/unity_openweathermap_daemon.py']),
 
16
    ('lib/ubuntu-scopes/openweathermap', ['src/__init__.py']),
 
17
    ], cmdclass={'build':  build_extra.build_extra,
 
18
                 'build_i18n': build_i18n.build_i18n,})