From 681d3bfd05c43bf6a5fc64e07b2bb04aba0ff750 Mon Sep 17 00:00:00 2001 From: Zooko O'Whielacronx Date: Thu, 29 Jan 2009 07:00:58 -0700 Subject: [PATCH] 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. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index cfcc5fd4..7cdf52cd 100644 --- a/setup.py +++ b/setup.py @@ -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 -- 2.45.2