2012-11-29 18:21:19 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
from __future__ import print_function
|
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 18:21:19 +00:00
|
|
|
print("Cannot import py2exe", file=sys.stderr)
|
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 18:21:19 +00:00
|
|
|
exec(compile(open('youtube_dl/version.py').read(), 'youtube_dl/version.py', 'exec'))
|
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,
|
2012-11-29 18:21:19 +00:00
|
|
|
|
|
|
|
classifiers = [
|
|
|
|
"Topic :: Multimedia :: Video",
|
|
|
|
"Development Status :: 5 - Production/Stable",
|
|
|
|
"Environment :: Console",
|
|
|
|
"License :: Public Domain",
|
|
|
|
"Programming Language :: Python :: 2.6",
|
|
|
|
"Programming Language :: Python :: 2.7",
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Programming Language :: Python :: 3.3"
|
|
|
|
]
|
2012-11-29 15:51:55 +00:00
|
|
|
)
|