From 6e49ddbc44ec56de06c1a4d93acb2f429a494394 Mon Sep 17 00:00:00 2001 From: Robey Pointer Date: Tue, 12 Sep 2006 00:31:53 -0700 Subject: [project @ robey@lag.net-20060912073153-4d8c5623d4c2aa7b] merge patches from wouter van heyst and john arbash-meinel for fixing tarballs on os x, and fixing md5 on linux --- setup.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'setup.py') diff --git a/setup.py b/setup.py index acfa65c1..9650c4c3 100644 --- a/setup.py +++ b/setup.py @@ -32,6 +32,7 @@ Required packages: #import ez_setup #ez_setup.use_setuptools() +import sys try: from setuptools import setup kw = { @@ -40,6 +41,11 @@ try: except ImportError: from distutils.core import setup kw = {} + +if sys.platform == 'darwin': + import setup_helper + setup_helper.install_custom_make_tarball() + setup(name = "paramiko", version = "1.6.2", -- cgit v1.2.3