~jconti/gm-notify/messaging-menu

3 by Alexander Hungenberg
Adding German translation; setup and .desktop file
1
#!/usr/bin/env python
2
3
from distutils.core import setup
4
5
setup(  name='gm-notify',
79 by Alexander Hungenberg
added bulgarian translation and ready for release 0.10.3
6
        version='0.10.3',
51 by Alexander Hungenberg
various small fixes
7
        description='Highly Ubuntu integrated GMail Notifier',
3 by Alexander Hungenberg
Adding German translation; setup and .desktop file
8
        author='Alexander Hungenberg',
9
        author_email='alexander.hungenberg@gmail.com',
71 by Alexander Hungenberg
fix bug #575531
10
        py_modules=['gtalk', 'gm_notify_keyring'],
73.1.1 by Andrew Starr-Bochicchio
Scripts installed into PATH should not use their language extensions.
11
        scripts=['gm-notify', 'gm-notify-config'],
69 by Alexander Hungenberg
fix bug #569718 and bug #373275
12
        data_files=[('/usr/share/applications', ['data/gm-notify-config.desktop']),
61 by Ken VanDine
* New release 0.10
13
                    ('/usr/share/indicators/messages/applications', ['data/gm-notify']),
69 by Alexander Hungenberg
fix bug #569718 and bug #373275
14
                    ('/usr/share/gm-notify', ['data/gm-notify.desktop']),
8 by Alexander Hungenberg
added config interface and sound support. Almost 0.7 ready
15
                    ('/usr/share/gm-notify', ['data/checking.gif']),
90 by Jason Conti
Update setup.py for new files
16
                    ('/usr/share/gm-notify', ['gm-config.ui']),
17
                    ('/usr/share/glib-2.0/schemas', ['data/net.launchpad.gm-notify.gschema.xml']),
14 by Alexander Hungenberg
Added danish translation
18
                    ('/usr/share/locale/da/LC_MESSAGES', ['po/da/gm-notify.mo']),
79 by Alexander Hungenberg
added bulgarian translation and ready for release 0.10.3
19
                    ('/usr/share/locale/bg/LC_MESSAGES', ['po/bg/gm-notify.mo']),
13 by Alexander Hungenberg
Fixed README and setup.py to install catalan translation, too
20
                    ('/usr/share/locale/de/LC_MESSAGES', ['po/de/gm-notify.mo']),
31 by Alexander Hungenberg
integrated translations and some last fixes. We are ready to release 0.9 :)
21
                    ('/usr/share/locale/ca/LC_MESSAGES', ['po/ca/gm-notify.mo']),
22
                    ('/usr/share/locale/el/LC_MESSAGES', ['po/el/gm-notify.mo']),
23
                    ('/usr/share/locale/es/LC_MESSAGES', ['po/es/gm-notify.mo']),
24
                    ('/usr/share/locale/fr/LC_MESSAGES', ['po/fr/gm-notify.mo']),
25
                    ('/usr/share/locale/he/LC_MESSAGES', ['po/he/gm-notify.mo']),
26
                    ('/usr/share/locale/hu/LC_MESSAGES', ['po/hu/gm-notify.mo']),
27
                    ('/usr/share/locale/it/LC_MESSAGES', ['po/it/gm-notify.mo']),
28
                    ('/usr/share/locale/nl/LC_MESSAGES', ['po/nl/gm-notify.mo']),
29
                    ('/usr/share/locale/pl/LC_MESSAGES', ['po/pl/gm-notify.mo']),
30
                    ('/usr/share/locale/pt/LC_MESSAGES', ['po/pt/gm-notify.mo']),
31
                    ('/usr/share/locale/pt_BR/LC_MESSAGES', ['po/pt_BR/gm-notify.mo']),
32
                    ('/usr/share/locale/ro/LC_MESSAGES', ['po/ro/gm-notify.mo']),
33
                    ('/usr/share/locale/ru/LC_MESSAGES', ['po/ru/gm-notify.mo']),
34
                    ('/usr/share/locale/sk/LC_MESSAGES', ['po/sk/gm-notify.mo']),
35
                    ('/usr/share/locale/sl/LC_MESSAGES', ['po/sl/gm-notify.mo']),] )