2012-11-29 15:51:55 +00:00
|
|
|
from distutils.core import setup
|
|
|
|
import pkg_resources
|
2012-11-28 17:24:16 +00:00
|
|
|
import sys
|
2012-11-29 15:51:55 +00:00
|
|
|
|
2012-11-28 17:24:16 +00:00
|
|
|
try:
|
|
|
|
import py2exe
|
|
|
|
except ImportError:
|
2012-11-29 15:51:55 +00:00
|
|
|
print >> sys.stderr, "Cannot import py2exe"
|
2012-04-07 18:07:42 +00:00
|
|
|
|
2012-11-29 15:51:55 +00:00
|
|
|
py2exe_options = {
|
2012-03-25 21:48:53 +00:00
|
|
|
"bundle_files": 1,
|
|
|
|
"compressed": 1,
|
|
|
|
"optimize": 2,
|
|
|
|
"dist_dir": '.',
|
|
|
|
"dll_excludes": ['w9xpopen.exe']
|
|
|
|
}
|
|
|
|
|
2012-11-29 15:51:55 +00:00
|
|
|
py2exe_console = [{
|
2012-03-25 21:48:53 +00:00
|
|
|
"script":"./youtube_dl/__main__.py",
|
|
|
|
"dest_base": "youtube-dl",
|
|
|
|
}]
|
|
|
|
|
2012-11-29 15:51:55 +00:00
|
|
|
execfile('youtube_dl/version.py')
|
2012-11-28 17:49:56 +00:00
|
|
|
|
2012-11-29 15:51:55 +00:00
|
|
|
setup(
|
|
|
|
name = 'youtube_dl',
|
|
|
|
version = __version__,
|
|
|
|
description = 'Small command-line program to download videos from YouTube.com and other video sites',
|
|
|
|
url = 'https://github.com/rg3/youtube-dl',
|
|
|
|
author = 'Ricardo Garcia',
|
|
|
|
maintainer = 'Philipp Hagemeister',
|
|
|
|
maintainer_email = 'phihag@phihag.de',
|
|
|
|
packages = ['youtube_dl'],
|
2012-03-30 23:19:30 +00:00
|
|
|
|
2012-11-29 15:51:55 +00:00
|
|
|
test_suite = 'nose.collector',
|
|
|
|
test_requires = ['nosetest'],
|
2012-03-25 21:48:53 +00:00
|
|
|
|
2012-11-29 15:51:55 +00:00
|
|
|
console = py2exe_console,
|
|
|
|
options = { "py2exe": py2exe_options },
|
2012-03-25 21:48:53 +00:00
|
|
|
|
2012-11-29 15:51:55 +00:00
|
|
|
scripts = ['bin/youtube-dl'],
|
|
|
|
zipfile = None,
|
|
|
|
)
|