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

« back to all changes in this revision

Viewing changes to setup.py

  • 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
1
#!/usr/bin/env python
2
2
 
3
 
from distutils.core import setup
 
3
from setuptools import setup
4
4
import glob, os, commands, sys
5
5
 
6
 
 
7
6
setup(
8
7
    name = 'python-distutils-extra',
9
8
    version = '0.90',
10
 
    description = 'Add support for i10n, documentation and icons to distutils',
11
 
    packages = ['DistUtilsExtra'],
 
9
    author = 'Sebastian Heinlein',
 
10
    author_email = 'sebi@glatzor.de',
 
11
    description = 'Add support for i18n, documentation and icons to distutils',
 
12
    packages = ['DistUtilsExtra', 'DistUtilsExtra.command'],
12
13
    license = 'GNU GPL',
13
14
    platforms = 'posix',
 
15
    entry_points = {"distutils.commands": [
 
16
           "build = DistUtilsExtra.command.build_extra:build",
 
17
           "build_i18n = DistUtilsExtra.command.build_i18n:build_i18n",
 
18
           "build_icons = DistUtilsExtra.command.build_icons:build_icons",
 
19
           "build_help = DistUtilsExtra.command.build_help:build_help",
 
20
           "clean_i18n = DistUtilsExtra.command.clean_i18n:clean_i18n",
 
21
        ],},
 
22
    test_suite = "nose.collector",
14
23
)