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",