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
This commit is contained in:
Andrew Forrest 2013-07-01 15:17:21 -07:00
parent 7b6ad9b45d
commit 53e6f000dc
1 changed files with 5 additions and 1 deletions

View File

@ -17,4 +17,8 @@ setup(
classifiers=["Programming Language :: Python"], classifiers=["Programming Language :: Python"],
url='https://github.com/maoy/inception', url='https://github.com/maoy/inception',
packages=["inception"], packages=["inception"],
) install_requires=[
"python-novaclient>=2.13.0",
"IPython>=0.13.2",
],
)