aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Christopher Rosell <chrippa@tanuki.se>2012-04-19 07:12:10 -0700
committerGravatar Christopher Rosell <chrippa@tanuki.se>2012-04-19 07:12:10 -0700
commit20fb1e23de91cf7a5b6e9f1a9eff96b6d87ff2d9 (patch)
tree3d8d9185d07a23a72feba06af0ed82e4f2c9bdb8
parentedfc2de50a4a15fc883a57dffed1e1ae60e93fc9 (diff)
parent9b9fcb92fe5d51d0b5f487f669bba34dcf8cb247 (diff)
Merge pull request #5 from doda/master
Update setup.py for Python 2.6 since it doesn't ship with argparse.
-rw-r--r--setup.py5
1 files changed, 4 insertions, 1 deletions
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',
+ ],
)