~ubuntu-branches/debian/squeeze/python-distutils-extra/squeeze

« back to all changes in this revision

Viewing changes to doc/setup.py.example

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2008-03-18 21:59:43 UTC
  • mfrom: (1.1.7 hardy)
  • Revision ID: james.westby@ubuntu.com-20080318215943-5a7lc4qa90f1m21t
Tags: 1.91.2
* DistUtilsExtra/command/build_i18n.py: Do not merge PO files by default,
  since it is not related to building the package, should be done manually
  rather, and creates noise in revision control. Introduce a new option
  -m/--merge-po instead. Adapt doc/FAQ accordingly.
* debian/control: Update Vcs-*: fields.
* debian/copyright: Fix copyright statement and upstream URL.
* debian/changelog: Fix invalid email address to make lintian happy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
 
 
3
from distutils.core import setup
 
4
import glob
 
5
import os
 
6
from DistUtilsExtra.command import *
 
7
 
 
8
setup(name='software-properties',
 
9
      version='0.50',
 
10
      packages=[
 
11
                'softwareproperties',
 
12
                'softwareproperties.gtk',
 
13
                'softwareproperties.kde',
 
14
                ],
 
15
      scripts=[
 
16
               'software-properties-gtk',
 
17
               'software-properties-kde',
 
18
               ],
 
19
      data_files=[
 
20
                  ('share/software-properties/designer',
 
21
                   glob.glob("data/designer/*.ui")
 
22
                  ),
 
23
                  ('share/software-properties/glade',
 
24
                   glob.glob("data/glade/*.glade")
 
25
                  ),
 
26
                  ],
 
27
      cmdclass = { "build" : build_extra.build_extra,
 
28
                   "build_i18n" :  build_i18n.build_i18n,
 
29
                   "build_help" :  build_help.build_help,
 
30
                   "build_icons" :  build_icons.build_icons }
 
31
     )