Issue 167: Wrong setuptools import in setup.py
Status:  Complete
Owner: ----
Closed:  Sep 2011
Reported by Arfrever...@gmail.com, Mar 25, 2011
setup.py contains:

try:
    # Allow use of setuptools so eggs can be built.
    from setuptools.core import setup, Command
except ImportError:
    from distutils.core import setup, Command

The first import should be changed to:
    from setuptools import setup, Command
May 20, 2011
Project Member #1 mkleehammer
(No comment was entered for this change.)
Status: Investigating
Sep 13, 2011
Project Member #2 mkleehammer
(No comment was entered for this change.)
Status: Complete