From: Ramon van Alteren Date: Wed, 8 Feb 2012 13:23:37 +0000 (+0100) Subject: Install fails without utils package which is required by JenkinsBase X-Git-Tag: v0.2.23~308^2~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=66b9761a85fa101da5c1c0f45846df0a35bedaf2;p=tools%2Fpython-jenkinsapi.git 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 --- 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,