diff options
author | Robey Pointer <robey@lag.net> | 2006-09-12 00:31:53 -0700 |
---|---|---|
committer | Robey Pointer <robey@lag.net> | 2006-09-12 00:31:53 -0700 |
commit | 6e49ddbc44ec56de06c1a4d93acb2f429a494394 (patch) | |
tree | e6c3a2e6bad01a14d891268ed44c3f0e4181269f /setup.py | |
parent | a4f09c31ed85be9f419461d6192a1b0db3c30839 (diff) |
[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
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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", |