about summary refs log tree commit diff
path: root/setup.py
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-09-23 17:59:27 +0200
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-12-11 16:18:48 +0100
commit3bc2ddccc8622379ec11e802dff30a635285a9c8 (patch)
tree63fe2e72f439c5db7f8047f395eca030981e620b /setup.py
parent8ab470f1b26b6c42ab74ceb345994c201743bed8 (diff)
downloadyoutube-dl-3bc2ddccc8622379ec11e802dff30a635285a9c8.tar.gz
youtube-dl-3bc2ddccc8622379ec11e802dff30a635285a9c8.tar.xz
youtube-dl-3bc2ddccc8622379ec11e802dff30a635285a9c8.zip
Move FileDownloader to its own module and create a new class for each download process
A suitable downloader can be found using the 'get_suitable_downloader' function.

Each subclass implements 'real_download', for downloading an info dict you call the 'download' method, which first checks if the video has already been downloaded
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 8e24fe679..653ca9a73 100644
--- a/setup.py
+++ b/setup.py
@@ -71,7 +71,7 @@ setup(
     author_email='ytdl@yt-dl.org',
     maintainer='Philipp Hagemeister',
     maintainer_email='phihag@phihag.de',
-    packages=['youtube_dl', 'youtube_dl.extractor'],
+    packages=['youtube_dl', 'youtube_dl.extractor', 'youtube_dl.downloader'],
 
     # Provokes warning on most systems (why?!)
     # test_suite = 'nose.collector',