djhenderson / pyodbc

Automatically exported from code.google.com/p/pyodbc
MIT No Attribution
0 stars 0 forks source link

Wrong setuptools import in setup.py #167

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
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

GoogleCodeExporter commented 9 years ago

Original comment by mkleehammer on 20 May 2011 at 7:45

GoogleCodeExporter commented 9 years ago

Original comment by mkleehammer on 13 Sep 2011 at 11:16