Update readme for testing prerequisites and update setup.py to include django_nose

This commit is contained in:
Mark Gius 2011-07-07 15:30:54 -07:00
parent 159e550a8f
commit 1bfc9b3bc7
2 changed files with 8 additions and 2 deletions

View File

@ -22,7 +22,13 @@ Getting Started
---------------
Django-Nova uses Buildout (http://www.buildout.org/) to manage local
development. To configure your local Buildout environment:
development. To configure your local Buildout environment first install the following
system-level dependencies:
* python-dev
* git
* bzr
Then instantiate buildout with
$ python bootstrap.py
$ bin/buildout

View File

@ -37,7 +37,7 @@ setup(
package_data = {'django_openstack':
[s[len('django_openstack/'):] for s in
findall('django_openstack/templates')]},
install_requires = ['setuptools', 'mox>=0.5.0'],
install_requires = ['setuptools', 'mox>=0.5.3', 'django_nose'],
classifiers = [
'Development Status :: 4 - Beta',
'Framework :: Django',