Install fails without utils package which is required by JenkinsBase
authorRamon van Alteren <ramon@vanalteren.nl>
Wed, 8 Feb 2012 13:23:37 +0000 (14:23 +0100)
committerRamon van Alteren <ramon@vanalteren.nl>
Wed, 8 Feb 2012 14:13:34 +0000 (15:13 +0100)
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

index 74780c6..c28e36f 100644 (file)
--- 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,