Mercurial > nosedjango
annotate setup.py @ 9:35178e70f1cd
urls support in testcase objects
author | Victor Ng <victor@monkeybean.ca> |
---|---|
date | Thu, 28 Aug 2008 13:33:58 -0400 |
parents | 22ae9aa457af |
children |
rev | line source |
---|---|
0 | 1 from setuptools import setup, find_packages |
2 | |
3 setup( | |
4 name='NoseDjango', | |
1
1a416359a617
upped the revision to 0.6 to match Django 1.0b1
Victor Ng <victor@monkeybean.ca>
parents:
0
diff
changeset
|
5 version='0.6', |
0 | 6 author='Victor Ng', |
2
7f2f9bb4f32c
oops. wrong email address in setup.py
Victor Ng <victor@monkeybean.ca>
parents:
1
diff
changeset
|
7 author_email = 'crankycoder@gmail.com', |
0 | 8 description = 'nose plugin for easy testing of django projects ' \ |
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 ' \ | |
11 'database (or schema) down after all tests are run.', | |
12 install_requires='nose>=0.10', | |
1
1a416359a617
upped the revision to 0.6 to match Django 1.0b1
Victor Ng <victor@monkeybean.ca>
parents:
0
diff
changeset
|
13 url = "http://www.assembla.com/spaces/nosedjango", |
0 | 14 license = 'GNU LGPL', |
5
22ae9aa457af
excercise more bits of the django 1.0b1 test framework
Victor Ng <victor@monkeybean.ca>
parents:
2
diff
changeset
|
15 packages = find_packages(), |
0 | 16 zip_safe = False, |
17 include_package_data = True, | |
18 entry_points = { | |
19 'nose.plugins': [ | |
20 'django = nosedjango.nosedjango:NoseDjango', | |
21 ] | |
22 } | |
23 ) | |
24 |