From: Zooko O'Whielacronx Date: Thu, 29 Jan 2009 14:00:58 +0000 (-0700) Subject: setup: subclass setuptools.Command instead of distutils Command X-Git-Tag: allmydata-tahoe-1.3.0~125 X-Git-Url: https://git.rkrishnan.org/listings/pb3calculator.py?a=commitdiff_plain;h=681d3bfd05c43bf6a5fc64e07b2bb04aba0ff750;p=tahoe-lafs%2Ftahoe-lafs.git 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. --- 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