From 66b9761a85fa101da5c1c0f45846df0a35bedaf2 Mon Sep 17 00:00:00 2001 From: Ramon van Alteren Date: Wed, 8 Feb 2012 14:23:37 +0100 Subject: [PATCH] Install fails without utils package which is required by JenkinsBase We only install jenkinsapi package and nothing below it as it is specified now in the setup.py This breaks the library because we need the jenkinsapi.utils package in JenkinsBase class --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 74780c6..c28e36f 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup(name=PROJECT_NAME.lower(), version=VERSION, author=PROJECT_AUTHORS, author_email=PROJECT_EMAILS, - packages=["jenkinsapi",], # Disabled use fo find-packages to exclude examples & tests + packages=["jenkinsapi",'jenkinsapi.utils'], # Disabled use fo find-packages to exclude examples & tests zip_safe=True, include_package_data = False, entry_points = GLOBAL_ENTRY_POINTS, -- 2.7.4