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
This commit is contained in:
Andrew Forrest 2013-08-28 11:18:12 -07:00
parent 641c97e2a4
commit 911969985f
1 changed files with 2 additions and 2 deletions

View File

@ -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",