comparison setup.py @ 1:1a416359a617

upped the revision to 0.6 to match Django 1.0b1
author Victor Ng <victor@monkeybean.ca>
date Thu, 28 Aug 2008 09:52:49 -0400
parents ff263bdd455e
children 7f2f9bb4f32c
comparison
equal deleted inserted replaced
0:ff263bdd455e 1:1a416359a617
1 from setuptools import setup, find_packages 1 from setuptools import setup, find_packages
2 2
3 setup( 3 setup(
4 name='NoseDjango', 4 name='NoseDjango',
5 version='0.5', 5 version='0.6',
6 author='Victor Ng', 6 author='Victor Ng',
7 author_email = 'victor.ng@monkeybeanonline.com', 7 author_email = 'victor@monkeybean.ca',
8 description = 'nose plugin for easy testing of django projects ' \ 8 description = 'nose plugin for easy testing of django projects ' \
9 'and apps. Sets up a test database (or schema) and installs apps ' \ 9 'and apps. Sets up a test database (or schema) and installs apps ' \
10 'from test settings file before tests are run, and tears the test ' \ 10 'from test settings file before tests are run, and tears the test ' \
11 'database (or schema) down after all tests are run.', 11 'database (or schema) down after all tests are run.',
12 install_requires='nose>=0.10', 12 install_requires='nose>=0.10',
13 url = "http://poli-cms.googlecode.com/svn/nose-django/", 13 url = "http://www.assembla.com/spaces/nosedjango",
14 license = 'GNU LGPL', 14 license = 'GNU LGPL',
15 packages = find_packages(exclude=['tests']), 15 packages = find_packages(exclude=['tests']),
16 zip_safe = False, 16 zip_safe = False,
17 include_package_data = True, 17 include_package_data = True,
18 entry_points = { 18 entry_points = {