2012-11-29 13:12:06 +00:00
|
|
|
from distutils.core import setup, Command
|
2012-11-28 17:24:16 +00:00
|
|
|
import sys
|
|
|
|
try:
|
|
|
|
import py2exe
|
|
|
|
except ImportError:
|
|
|
|
sys.stderr.write("Cannot import py2exe")
|
2012-11-28 17:49:56 +00:00
|
|
|
import subprocess
|
2012-03-25 21:48:53 +00:00
|
|
|
|
2012-11-28 17:49:56 +00:00
|
|
|
"""The p2exe option will create an exe that needs Microsoft Visual C++ 2008 Redistributable Package.
|
|
|
|
python setup.py py2exe
|
|
|
|
You can also build a zip executable with
|
|
|
|
python setup.py bdist --format=zip
|
|
|
|
|
2012-11-29 13:12:06 +00:00
|
|
|
The test suite can be run with
|
|
|
|
python setup.py test
|
2012-11-28 17:49:56 +00:00
|
|
|
|
2012-11-29 13:12:06 +00:00
|
|
|
|
|
|
|
The actual version is defined by the last git tag
|
2012-11-28 17:49:56 +00:00
|
|
|
"""
|
2012-04-07 18:07:42 +00:00
|
|
|
|
2012-03-25 21:48:53 +00:00
|
|
|
# If run without args, build executables
|
2012-11-29 13:12:06 +00:00
|
|
|
#if len(sys.argv) == 1:
|
|
|
|
# sys.argv.append("py2exe")
|
2012-03-25 21:48:53 +00:00
|
|
|
|
2012-04-07 18:07:42 +00:00
|
|
|
# os.chdir(os.path.dirname(os.path.abspath(sys.argv[0]))) # conflict with wine-py2exe.sh
|
2012-11-28 17:49:56 +00:00
|
|
|
#sys.path.append('./youtube_dl')
|
2012-03-25 21:48:53 +00:00
|
|
|
|
|
|
|
options = {
|
|
|
|
"bundle_files": 1,
|
|
|
|
"compressed": 1,
|
|
|
|
"optimize": 2,
|
|
|
|
"dist_dir": '.',
|
|
|
|
"dll_excludes": ['w9xpopen.exe']
|
|
|
|
}
|
|
|
|
|
|
|
|
console = [{
|
|
|
|
"script":"./youtube_dl/__main__.py",
|
|
|
|
"dest_base": "youtube-dl",
|
|
|
|
}]
|
|
|
|
|
2012-03-30 23:19:30 +00:00
|
|
|
init_file = open('./youtube_dl/__init__.py')
|
2012-11-28 17:49:56 +00:00
|
|
|
|
|
|
|
try:
|
2012-11-29 13:12:06 +00:00
|
|
|
#return the last tag name
|
2012-11-28 17:49:56 +00:00
|
|
|
version = subprocess.checkoutput(["git", "describe", "--abbrev=0", "--tags"])
|
|
|
|
except:
|
2012-03-30 23:19:30 +00:00
|
|
|
version = ''
|
|
|
|
|
|
|
|
setup(name='youtube-dl',
|
|
|
|
version=version,
|
2012-11-29 13:12:06 +00:00
|
|
|
long_description='Small command-line program to download videos from YouTube.com and other video sites',
|
2012-03-30 23:19:30 +00:00
|
|
|
url='https://github.com/rg3/youtube-dl',
|
|
|
|
packages=['youtube_dl'],
|
2012-11-29 13:12:06 +00:00
|
|
|
#test suite
|
|
|
|
test_suite='nose.collector',
|
|
|
|
test_requires=['nosetest'],
|
|
|
|
console=console,
|
|
|
|
options={"py2exe": options},
|
|
|
|
scripts=['bin/youtube-dl'],
|
|
|
|
zipfile=None,
|
2012-03-25 21:48:53 +00:00
|
|
|
)
|
|
|
|
|
2012-11-29 13:12:06 +00:00
|
|
|
#import shutil
|
|
|
|
#shutil.rmtree("build")
|
2012-03-25 21:48:53 +00:00
|
|
|
|