setup: subclass setuptools.Command instead of distutils Command

There's almost no difference between them, but let's be consistent try to use the setuptools API as it was intended.
This commit is contained in:
Zooko O'Whielacronx 2009-01-29 07:00:58 -07:00
parent 42d500f73d
commit 681d3bfd05

View File

@ -72,7 +72,7 @@ else:
from setuptools import find_packages, setup
from setuptools.command import sdist
from distutils.core import Command
from setuptools import Command
from pkg_resources import require
# Make the dependency-version-requirement, which is used by the Makefile at