From 1bfc9b3bc73cfe744eb90c238b16e4de7c2f93a1 Mon Sep 17 00:00:00 2001 From: Mark Gius Date: Thu, 7 Jul 2011 15:30:54 -0700 Subject: [PATCH] Update readme for testing prerequisites and update setup.py to include django_nose --- django-openstack/README | 8 +++++++- django-openstack/setup.py | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/django-openstack/README b/django-openstack/README index 2536a6677c..5c0efa213e 100644 --- a/django-openstack/README +++ b/django-openstack/README @@ -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 diff --git a/django-openstack/setup.py b/django-openstack/setup.py index 7f0ea31a85..078a82f7cf 100755 --- a/django-openstack/setup.py +++ b/django-openstack/setup.py @@ -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',