~ubuntu-branches/ubuntu/maverick/testresources/maverick

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Bazaar Package Importer
  • Author(s): Matej Vela
  • Date: 2006-05-19 12:58:19 UTC
  • Revision ID: james.westby@ubuntu.com-20060519125819-lt4vf6r9o2p94x1m
Tags: upstream-0.1
ImportĀ upstreamĀ versionĀ 0.1

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
 
 
5
setup(name="testresources",
 
6
      version="0.1",
 
7
      description="Testresources, a pyunit extension for managing expensive "
 
8
                  "test resources",
 
9
      maintainer="Robert Collins",
 
10
      maintainer_email="robertc@robertcollins.net",
 
11
      url="http://www.robertcollins.net/unittest/testresources",
 
12
      packages=['testresources', 'testresources.tests'],
 
13
      package_dir = {'':'lib'}
 
14
      )