From 347fa541e8820a6cc59989dd962da9267778ca35 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Wed, 8 Dec 2010 09:37:40 -0500 Subject: [PATCH] Fix broken setup.py by importing setup() from distutils.core. --- setup.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 2d7e5a0..f681804 100644 --- a/setup.py +++ b/setup.py @@ -6,6 +6,11 @@ for all your child functions, and let splittable_kwargs manage the partitioning for you. """ +from distutils.core import setup + +from splittable_kwargs import __version__ + + classifiers = """\ Development Status :: 2 - Pre-Alpha Intended Audience :: Developers @@ -18,8 +23,6 @@ Topic :: Software Development :: Libraries :: Python Modules doclines = __doc__.split("\n") -from splittable_kwargs import __version__ - setup(name="splittable_kwargs", version=__version__, -- 2.26.2