From 8482a1e2bb03f91640eb4883d907b0f47c20499c Mon Sep 17 00:00:00 2001 From: Cooper Hammond Date: Wed, 29 May 2019 08:14:42 -0700 Subject: [PATCH] updated env vars and setup.py requires --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 96b4e66..34cc226 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name = 'irs', - version = '7.0.0', + version = '7.0.1', description = 'A music downloader that gets metadata too.', url = 'https://github.com/kepoorhampond/irs', author = 'Kepoor Hampond', @@ -16,7 +16,8 @@ setup( 'argparse', # CLI arg parsing 'spotipy', # Interfacing w/ Spotify API 'ydl-binaries', # Downloading ffmpeg/ffprobe binaries - 'pyyaml' # Config files done simply + 'pyyaml', # Config files done simply + 'youtube-dl' # Download youtube videos ], entry_points = { 'console_scripts': ['irs = irs.cli.cli:main'],