diff --git a/Automation_Tools/Playlist-downloader/setup.py b/Automation_Tools/Playlist-downloader/setup.py new file mode 100644 index 0000000000..405b741a1c --- /dev/null +++ b/Automation_Tools/Playlist-downloader/setup.py @@ -0,0 +1,11 @@ +from setuptools import setup +setup(name="Playlist_downloader", + version="1.0", + description="Playlist Downloader simplifies the process of downloading YouTube playlists by providing a straightforward API to fetch and save videos from a given playlist URL.", + long_description=open('README.md').read(), + long_description_content_type='text/markdown', + author="Yash Kumar Saini", + packages=['Playlist_downloader'], + license="MIT", + install_requires=['pytube'] +)