Skip to content
This repository has been archived by the owner on Sep 26, 2019. It is now read-only.

Commit

Permalink
Adds inception.utils to inception package.
Browse files Browse the repository at this point in the history
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
  • Loading branch information
Andrew Forrest committed Aug 28, 2013
1 parent 641c97e commit 9119699
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -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

Expand All @@ -16,7 +16,7 @@
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",
Expand Down

0 comments on commit 9119699

Please sign in to comment.