Remove fallback to distutils

Inception has dependencies that cannot be expressed using distutils so the
code that substitutes distutils if setuptools cannot be imported should be
removed lest it be invoked and lead to a confusing error case.

Change-Id: I8959855b3b48e6742b73770a32f7931ccc1c78ef
Fixes: bug #1210181
This commit is contained in:
Andrew Forrest 2013-08-28 14:34:10 -07:00
parent b429a603ca
commit f00b99bb70
1 changed files with 1 additions and 4 deletions

View File

@ -1,10 +1,7 @@
#!/usr/bin/env python
# Copyright (c) 2013 AT&T. All right reserved.
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
from setuptools import setup, find_packages
# move version string out of setup so it is readily available to others
from inception import __version__