Remove optional setuptools import.

We don't rely on any setuptools features for python2 builds, and the
optional import makes our builds depend on the environment in subtle
ways (egg-info directories, etc).
This commit is contained in:
Ben Darnell 2012-01-30 23:46:36 -08:00
parent 501a551ea2
commit 50b28c5d7a
1 changed files with 0 additions and 6 deletions

View File

@ -16,12 +16,6 @@
import distutils.core
import sys
# Importing setuptools adds some features like "setup.py develop", but
# it's optional so swallow the error if it's not there.
try:
import setuptools
except ImportError:
pass
kwargs = {}