~ubuntu-branches/ubuntu/lucid/testresources/lucid

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Bazaar Package Importer
  • Author(s): Robert Collins
  • Date: 2010-02-27 10:04:22 UTC
  • mfrom: (1.1.5 upstream) (2.1.6 sid)
  • Revision ID: james.westby@ubuntu.com-20100227100422-lt9yiszrs23wl8r3
Tags: 0.2.4-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/env python
2
2
 
3
3
from distutils.core import setup
 
4
import os.path
 
5
 
 
6
description = file(os.path.join(os.path.dirname(__file__), 'README'), 'rb').read()
4
7
 
5
8
setup(name="testresources",
6
 
      version="0.2.3",
 
9
      version="0.2.4",
7
10
      description="Testresources, a pyunit extension for managing expensive "
8
11
                  "test resources",
9
 
      maintainer="Test Resources developers",
 
12
      long_description=description,
 
13
      maintainer="Testresources developers",
10
14
      maintainer_email="https://launchpad.net/~testresources-developers",
11
15
      url="https://launchpad.net/testresources",
12
16
      packages=['testresources', 'testresources.tests'],
13
 
      package_dir = {'':'lib'}
 
17
      package_dir = {'':'lib'},
 
18
      classifiers = [
 
19
          'Development Status :: 6 - Mature',
 
20
          'Intended Audience :: Developers',
 
21
          'License :: OSI Approved :: BSD License',
 
22
          'License :: OSI Approved :: Apache Software License',
 
23
          'Operating System :: OS Independent',
 
24
          'Programming Language :: Python',
 
25
          'Topic :: Software Development :: Quality Assurance',
 
26
          'Topic :: Software Development :: Testing',
 
27
          ],
14
28
      )