youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit c7a725cfad52dd82ed4695eb526c053c7d48944d
parent 450a30cae8bb1689dea8cd3548b8f48f94f5a663
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Fri,  1 Feb 2013 18:05:42 +0100

Merge remote-tracking branch 'dcoppa/master'

Diffstat:
Msetup.py | 6+++++-
1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/setup.py b/setup.py @@ -2,11 +2,15 @@ # -*- coding: utf-8 -*- from __future__ import print_function -from distutils.core import setup import pkg_resources import sys try: + from setuptools import setup +except ImportError: + from distutils.core import setup + +try: import py2exe """This will create an exe that needs Microsoft Visual C++ 2008 Redistributable Package""" except ImportError: