~alexeftimie/jockey/fix-gobject

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2008-01-17 15:02:40 UTC
  • Revision ID: james.westby@ubuntu.com-20080117150240-djmsi8giu255vzzn
Tags: 0.1~r118
* Initial release, result of completely rewriting restricted-manager to be
  maintainable, robust, and suitable for other distributions. Some features
  and the KDE UI still need to be ported.
* See restricted-manager-rewrite specification for details.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
 
 
3
# (c) 2007 Canonical Ltd.
 
4
# Author: Martin Pitt <martin.pitt@ubuntu.com>
 
5
 
 
6
# This script needs python-distutils-extra, an extension to the standard
 
7
# distutils which provides i18n, icon support, etc.
 
8
# https://launchpad.net/python-distutils-extra
 
9
 
 
10
from glob import glob
 
11
from distutils.core import setup
 
12
from DistUtilsExtra.command import *
 
13
 
 
14
setup(
 
15
    name='jockey',
 
16
    version='0',
 
17
 
 
18
    description='UI for managing third-party and non-free drivers',
 
19
    url='https://launchpad.net/jockey',
 
20
    license='gpl',
 
21
 
 
22
    packages=['jockey'],
 
23
 
 
24
    data_files = [
 
25
        ('share/jockey', glob('gtk/*.glade')),
 
26
        ('share/jockey/modaliases', glob('data/modalias-overrides/*')),
 
27
        ('share/jockey/handlers', glob('data/handlers/*')),
 
28
        ],
 
29
 
 
30
    scripts = ['gtk/jockey-gtk'],
 
31
 
 
32
    cmdclass = { 'build': build_extra.build_extra,
 
33
                 'build_i18n': build_i18n.build_i18n,
 
34
                 'build_icons': build_icons.build_icons,
 
35
                 'clean': clean_i18n.clean_i18n,
 
36
               }
 
37
)