| Issue 167: | Wrong setuptools import in setup.py | |
| 1 person starred this issue and may be notified of changes. | Back to list |
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
Status:
Investigating
Sep 13, 2011
(No comment was entered for this change.)
Status:
Complete
|