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
Original issue reported on code.google.com by Arfrever...@gmail.com on 25 Mar 2011 at 9:56
Original issue reported on code.google.com by
Arfrever...@gmail.com
on 25 Mar 2011 at 9:56