Mercurial > nosedjango
view setup.py @ 4:20bca08c0828
ignore .orig files from hg revert
added a test module with doctests in it
author | Victor Ng <victor@monkeybean.ca> |
---|---|
date | Thu, 28 Aug 2008 10:18:23 -0400 |
parents | 7f2f9bb4f32c |
children | 22ae9aa457af |
line wrap: on
line source
from setuptools import setup, find_packages setup( name='NoseDjango', version='0.6', author='Victor Ng', author_email = 'crankycoder@gmail.com', 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', ] } )