From 9b9fcb92fe5d51d0b5f487f669bba34dcf8cb247 Mon Sep 17 00:00:00 2001 From: Dominik Dabrowski Date: Thu, 19 Apr 2012 16:06:06 +0200 Subject: update setup.py for python2.6 since it doesnt ship with argparse --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b17b0a4..8eb78c9 100644 --- a/setup.py +++ b/setup.py @@ -14,5 +14,8 @@ setup(name="livestreamer", package_dir={'': 'src'}, entry_points={ "console_scripts": ['livestreamer=livestreamer.cli:main'] - } + }, + install_requires=[ + 'argparse', + ], ) -- cgit v1.2.3