From 698805f62b3807e8b1810d4b00d6d4867384a04a Mon Sep 17 00:00:00 2001 From: Nils Philippsen Date: Mon, 6 Jun 2016 11:21:19 +0200 Subject: [PATCH] add missing dependencies ... which are available from pypi.python.org Signed-off-by: Nils Philippsen --- setup.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/setup.py b/setup.py index a62cc348..d6594523 100755 --- a/setup.py +++ b/setup.py @@ -51,6 +51,14 @@ setup( ], test_suite = "tests", install_requires = [ + "kobo", + "lockfile", "lxml", + "productmd", + ], + tests_require = [ + "mock", + "nose", + "nose-cov", ], )