From 28c60141e3a344c879d7781fb69901efbc066090 Mon Sep 17 00:00:00 2001 From: Justin Riley Date: Thu, 23 Jun 2011 01:25:54 -0400 Subject: [PATCH] setup.py: use setuptools instead of distutils.core adds ability to use "python setup.py develop" --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8507337..4b308cf 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ #!/usr/bin/python # (c) 2005-2009 Divmod, Inc. See LICENSE file for details -from distutils.core import setup +from setuptools import setup setup( name="pyflakes",