diff --git a/MANIFEST b/MANIFEST new file mode 100644 index 0000000..f80e022 --- /dev/null +++ b/MANIFEST @@ -0,0 +1,4 @@ +# file GENERATED by distutils, do NOT edit +setup.py +playlistDownloader/__init__.py +playlistDownloader/main.py diff --git a/playlistDownloader/__init__.py b/playlistDownloader/__init__.py new file mode 100644 index 0000000..15b6a64 --- /dev/null +++ b/playlistDownloader/__init__.py @@ -0,0 +1 @@ +from .main import * diff --git a/playlistDownloader/setup.py b/playlistDownloader/setup.py deleted file mode 100644 index e69de29..0000000 diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..7c01937 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,4 @@ +pyfiglet +yt_dlp +ffmpeg + diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..67ee22e --- /dev/null +++ b/setup.py @@ -0,0 +1,15 @@ +from distutils.core import setup +setup( + name='playlistDownloader', + version='0.0.1', + author='Skeeper Loyaltie', + author_email='skeeperloyaltie@pm.me', + url='skeeperloyaltie@pm.me', + license='LICENSE', + packages=['playlistDownloader'], + description='Youtube Playlist Downloader', + install_requires=[ + 'yt_dlp', + 'pyfiglet' + ] +)