From 970c9a65c52cfc78f8e94df6b3c1bb34e2eb584d Mon Sep 17 00:00:00 2001 From: alexmercerind Date: Wed, 23 Dec 2020 22:38:06 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Bumped=20version=20to=201.3.4=20?= =?UTF-8?q?&=20added=20MANIFEST.in=20to=20keep=20missing=20files?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- MANIFEST.in | 3 +++ setup.py | 7 +++++-- 2 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..c6ab47d --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,3 @@ +include README.md +include youtubesearchpython/*.json +recursive-include youtubesearchpython *.py \ No newline at end of file diff --git a/setup.py b/setup.py index cfe1aec..089636e 100644 --- a/setup.py +++ b/setup.py @@ -5,14 +5,17 @@ setuptools.setup( name="youtube-search-python", - version="1.3.3", + version="1.3.4", author="Hitesh Kumar Saini", + license = 'MIT', author_email="saini123hitesh@gmail.com", - description="Search for YouTube videos WITHOUT YouTube Data API v3", + description="Search for YouTube videos, channels & playlists WITHOUT YouTube Data API v3", long_description= long_description, long_description_content_type="text/markdown", url="https://github.com/alexmercerind/youtube-search-python", packages=setuptools.find_packages(), + include_package_data=True, + zip_safe=False, classifiers=[ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License",