1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-06-07 04:19:39 +00:00

moving to setup.py

This commit is contained in:
gcmalloc 2012-11-28 18:24:16 +01:00
parent c64de2c980
commit 4efe62a016

View file

@ -1,6 +1,10 @@
from distutils.core import setup from distutils.core import setup
import py2exe import sys
import sys, os try:
import py2exe
except ImportError:
sys.stderr.write("Cannot import py2exe")
import os
"""This will create an exe that needs Microsoft Visual C++ 2008 Redistributable Package""" """This will create an exe that needs Microsoft Visual C++ 2008 Redistributable Package"""