Fix broken setup.py by importing setup() from distutils.core. master
authorW. Trevor King <wking@drexel.edu>
Wed, 8 Dec 2010 14:37:40 +0000 (09:37 -0500)
committerW. Trevor King <wking@drexel.edu>
Wed, 8 Dec 2010 14:37:40 +0000 (09:37 -0500)
setup.py

index 2d7e5a07a1c3f38f1effe2d9fc578d0d336788c8..f6818047f6e0e5288029f2f24da15f521a5ab8cc 100644 (file)
--- 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__,