]> git.rkrishnan.org Git - tahoe-lafs/zfec.git/commitdiff
setup: require the argparse distribution only if the argparse module can't be imported
authorzooko <zooko@zooko.com>
Wed, 11 Apr 2012 03:07:20 +0000 (08:37 +0530)
committerzooko <zooko@zooko.com>
Wed, 11 Apr 2012 03:07:20 +0000 (08:37 +0530)
Ignore-this: 82585d4def974c5bddfaf396b102897a

darcs-hash:43bb318dee3ff378a947e68aa4539877297e361e

zfec/setup.py

index fdb6785fa77d0a989e442c96edb21b65867368cc..bd0cbc77de3f1337961be275e31d7747e0eaeab3 100755 (executable)
@@ -1,9 +1,7 @@
-#!/usr/bin/env python
-
+
 # zfec -- fast forward error correction library with Python interface
 #
-# Copyright (C) 2007-2011 Allmydata, Inc.
-# Author: Zooko Wilcox-O'Hearn
+# copyright © 2007-2012 Zooko Wilcox-O'Hearn
 #
 # This file is part of zfec.
 #
@@ -153,7 +151,12 @@ if readmetext[:3] == '\xef\xbb\xbf':
 
 install_requires=["pyutil >= 1.3.19"]
 
-if sys.version_info < (2, 7):
+# argparse comes built into Python >= 2.7, and is provided by the "argparse"
+# distribution for earlier versions of Python.
+try:
+    import argparse
+    argparse # hush pyflakes
+except ImportError:
     install_requires.append("argparse >= 0.8")
 
 setup(name=PKG,