From bdde3e6d70557ebd55b30e5d0071092b9b2a1d3f Mon Sep 17 00:00:00 2001 From: elie Date: Fri, 28 Aug 2009 19:37:36 +0000 Subject: attempt to load setuptools --- setup.py | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 3a1cc3f..7c9fd40 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,22 @@ #!/usr/bin/env python -from distutils.core import setup +import sys + +def howto_install_setuptools(): + print """Error: You need setuptools Python package! + +It's very easy to install it, just type (as root on Linux): + wget http://peak.telecommunity.com/dist/ez_setup.py + python ez_setup.py +""" + +try: + from setuptools import setup +except ImportError: + for arg in sys.argv: + if "egg" in arg: + howto_install_setuptools() + sys.exit(1) + from distutils.core import setup setup(name="pysnmp", version="4.1.12a", -- cgit v1.2.1