# HG changeset patch # User Victor Ng # Date 1219931569 14400 # Node ID 1a416359a617215253d1b316a7e086038877983b # Parent ff263bdd455e142133f0e49541ba2b4fbbbfe788 upped the revision to 0.6 to match Django 1.0b1 diff -r ff263bdd455e -r 1a416359a617 setup.py --- a/setup.py Thu Aug 28 09:44:43 2008 -0400 +++ b/setup.py Thu Aug 28 09:52:49 2008 -0400 @@ -2,15 +2,15 @@ setup( name='NoseDjango', - version='0.5', + version='0.6', author='Victor Ng', - author_email = 'victor.ng@monkeybeanonline.com', + author_email = 'victor@monkeybean.ca', description = 'nose plugin for easy testing of django projects ' \ 'and apps. Sets up a test database (or schema) and installs apps ' \ 'from test settings file before tests are run, and tears the test ' \ 'database (or schema) down after all tests are run.', install_requires='nose>=0.10', - url = "http://poli-cms.googlecode.com/svn/nose-django/", + url = "http://www.assembla.com/spaces/nosedjango", license = 'GNU LGPL', packages = find_packages(exclude=['tests']), zip_safe = False,