From 911969985faa66f591dd3680a20d93088b56e6a7 Mon Sep 17 00:00:00 2001 From: Andrew Forrest Date: Wed, 28 Aug 2013 11:18:12 -0700 Subject: [PATCH] Adds inception.utils to inception package. Previously inception.utils was overlooked for packaging. Note: the use of setuptools' "find_packages()" might appear to be a poor choice since this setup.py is written to fall back to using distutils which doesn't have a find_packages but in fact it cannot usefully fall back to distutils anyway (see bug #1210181) so it is not an issue. Change-Id: I31b2b5f3952df0b8ecd0bc59f9978cf0bb9f03e5 Fixes: bug #1210180 --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 79f3162..ee79736 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ # Copyright (c) 2013 AT&T. All right reserved. try: - from setuptools import setup + from setuptools import setup, find_packages except ImportError: from distutils.core import setup @@ -16,7 +16,7 @@ setup( license="Apache 2.0", classifiers=["Programming Language :: Python"], url='https://github.com/stackforge/inception', - packages=["inception"], + packages=find_packages(), install_requires=[ "oslo.config>=1.1.1", "python-novaclient>=2.13.0",