From ffe3d21306d00c9508108f0f3fe4f3a590d50950 Mon Sep 17 00:00:00 2001 From: Allan Saddi Date: Sat, 17 Dec 2005 00:20:03 +0000 Subject: Switch to setuptools for egg support. --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 6636710..f043498 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,9 @@ #!/usr/bin/env python -from distutils.core import setup +try: + from setuptools import setup +except ImportError: + from distutils.core import setup setup(name='flup', version='0.5', -- cgit v1.2.1