~barry/ubuntu/natty/python-distutils-extra/670188-ftbfs

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2009-07-01 16:39:54 UTC
  • mfrom: (1.1.13 karmic)
  • Revision ID: james.westby@ubuntu.com-20090701163954-3ewvhmu8l9oci2w9
Tags: 2.3
* auto.py: Fix recognition of GtkBuilder *.ui files as glade-3 writes them.
* auto.py: Add automatic calculation of "requires" unless explicitly given.
* auto.py: Add automatic calculation of "provides" unless explicitly given.
* Drop test/testBzrBuild.py, it's specific to Sebastian's computer.
* setup.py: Drop nose.collector, we don't use it.
* Add debian/local/python-mkdebian: Create/update debian packaging
  (debian/*) from python egg-info data. Not terribly pretty, but working and
  reasonably policy compliant.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 
6
6
setup(
7
7
    name = 'python-distutils-extra',
8
 
    version = '0.90',
9
 
    author = 'Sebastian Heinlein',
10
 
    author_email = 'sebi@glatzor.de',
 
8
    version = '2.3',
 
9
    author = 'Sebastian Heinlein, Martin Pitt',
 
10
    author_email = 'sebi@glatzor.de, martin.pitt@ubuntu.com',
11
11
    description = 'Add support for i18n, documentation and icons to distutils',
12
12
    packages = ['DistUtilsExtra', 'DistUtilsExtra.command'],
13
13
    license = 'GNU GPL',
20
20
           "clean_i18n = DistUtilsExtra.command.clean_i18n:clean_i18n",
21
21
           "check = DistUtilsExtra.command.check:check",
22
22
        ],},
23
 
    test_suite = "nose.collector",
24
23
)