From 53e6f000dcce0218b4ae07bc8291352ae072924c Mon Sep 17 00:00:00 2001 From: Andrew Forrest Date: Mon, 1 Jul 2013 15:17:21 -0700 Subject: [PATCH] Add 'install_requires=' parameter to setup.py. Added install_requires= to setup.py to track Inception dependencies. Initial value includes IPython and python_novaclient. Change-Id: I36e1f1b9cb38acdad6c1f6e2148c1790d26788b4 --- setup.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f4821d2..60ad5e1 100644 --- a/setup.py +++ b/setup.py @@ -17,4 +17,8 @@ setup( classifiers=["Programming Language :: Python"], url='https://github.com/maoy/inception', packages=["inception"], - ) + install_requires=[ + "python-novaclient>=2.13.0", + "IPython>=0.13.2", + ], +)