From 6baadb00fd8923f88ce7049aa7f260bf90eb9da5 Mon Sep 17 00:00:00 2001 From: Shail Shouryya Date: Wed, 27 Nov 2019 12:55:17 -0800 Subject: [PATCH] 0.2.13: cosmetic changes - changes /usr/local/bin -> /usr/local/bin/ - adds --strip-components=1 for the operadriver download command - rearranges copy paste directions to be printed first before the download commands for a driver rather than last (after the driver info) - renames output.py -> notifications.py - hard codes link to future features to work properly on test.pypi and pypi (relative path does not work on sites other than GitHub) --- setup.py | 2 +- yt_videos_list/__init__.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 21e4e8ef..c6dc13fa 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name='yt_videos_list', - version='0.2.12', + version='0.2.13', description='Python package to extract YouTube video titles and corresponding URLs for a specific channel', long_description=long_description, long_description_content_type='text/markdown', diff --git a/yt_videos_list/__init__.py b/yt_videos_list/__init__.py index 09c5eb35..ed7de5aa 100644 --- a/yt_videos_list/__init__.py +++ b/yt_videos_list/__init__.py @@ -1,6 +1,6 @@ from yt_videos_list.__main__ import ListGenerator ''' -version: 0.2.12 +version: 0.2.13 author: Shail-Shouryya development_status: 4 - Beta intended_audience: Developers, Hobbyists @@ -8,7 +8,7 @@ ideal_python_version: Python 3.7 source: https://github.com/Shail-Shouryya/yt_videos_list ''' -__version__ = "0.2.12" +__version__ = "0.2.13" __author__ = 'Shail-Shouryya' __development_status__ = '4 - Beta' __intended_audience__ = 'Developers, Hobbyists'