~dcaro/clicompanion/fix-908240

54.1.1 by duanedesign
clicompanion.seperate rev.12
1
#!/usr/bin/env python
2
#
3
# Copyright 2010 Duane Hinnen
4
#
5
#
6
# This program is free software: you can redistribute it and/or modify it
7
# under the terms of the GNU General Public License version 3, as published
8
# by the Free Software Foundation.
9
#
10
# This program is distributed in the hope that it will be useful, but
11
# WITHOUT ANY WARRANTY; without even the implied warranties of
12
# MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
13
# PURPOSE.  See the GNU General Public License for more details.
14
#
15
# You should have received a copy of the GNU General Public License along
16
# with this program.  If not, see <http://www.gnu.org/licenses/>.
17
#
18
#
19
20
import glob
21
from distutils.core import setup
22
from DistUtilsExtra.command import *
23
24
25
26
setup(  name='clicompanion',
85 by bdfhjk
Changed version to 1.1
27
        version='0.1.1',
54.1.1 by duanedesign
clicompanion.seperate rev.12
28
        description='Run Terminal commands from a GUI. Store commands for later use.',
29
        author='Duane Hinnen',
30
        author_email='duanedesign@gmail.com',
31
        scripts=['clicompanion'],
32
        packages=['clicompanionlib'],
33
        data_files=[('/etc/clicompanion.d/', ['data/clicompanion2.config']),
34
        ('/usr/share/pixmaps', ['data/clicompanion.16.png']),
35
        ('/usr/share/applications', ['data/clicompanion.desktop']),
36
        ('share/clicompanion/locale/', glob.glob('locale/*/LC_MESSAGES/*.mo')),
37
         ],
38
         
39
        cmdclass = { 'build'       : build_extra.build_extra,
40
                     'build_i18n' :  build_i18n.build_i18n,
41
        },  
42
        )