~launchpad-pqm/testtools/trunk

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Jonathan Lange
  • Date: 2008-10-04 03:56:17 UTC
  • mfrom: (10.1.1 rename-to-testtools)
  • Revision ID: jml@canonical.com-20081004035617-0fzwmpolu86rahw7
Rename pyunit3k to testtools.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
"""Distutils installer for pyunit3k."""
 
1
"""Distutils installer for testtools."""
2
2
 
3
3
from distutils.core import setup
4
4
 
5
 
setup(name='pyunit3k',
 
5
setup(name='testtools',
6
6
      author='Jonathan M. Lange',
7
 
      author_email='jml+pyunit3k@mumak.net',
8
 
      url='https://launchpad.net/pyunit3k',
 
7
      author_email='jml+testtools@mumak.net',
 
8
      url='https://launchpad.net/testtools',
9
9
      description=('Extensions to the Python standard library unit testing '
10
10
                   'framework'),
11
11
      version='0.0.1',
12
 
      packages=['pyunit3k'])
 
12
      packages=['testtools'])