view 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
line wrap: on
line source

from setuptools import setup, find_packages

setup(
    name='NoseDjango',
    version='0.6',
    author='Victor Ng',
    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://www.assembla.com/spaces/nosedjango",
    license = 'GNU LGPL',
    packages = find_packages(exclude=['tests']),
    zip_safe = False,
    include_package_data = True,
    entry_points = {
        'nose.plugins': [
            'django = nosedjango.nosedjango:NoseDjango',
            ]
        }
    )