Mercurial > nosedjango
annotate 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 |
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', |
15 packages = find_packages(exclude=['tests']), | |
16 zip_safe = False, | |
17 include_package_data = True, | |
18 entry_points = { | |
19 'nose.plugins': [ | |
20 'django = nosedjango.nosedjango:NoseDjango', | |
21 ] | |
22 } | |
23 ) | |
24 |