Skip to content

Commit

Permalink
well new stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
skeeperloyaltie committed Sep 28, 2023
1 parent 2749fe0 commit 3ca24a8
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 0 deletions.
4 changes: 4 additions & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# file GENERATED by distutils, do NOT edit
setup.py
playlistDownloader/__init__.py
playlistDownloader/main.py
1 change: 1 addition & 0 deletions playlistDownloader/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from .main import *
Empty file removed playlistDownloader/setup.py
Empty file.
4 changes: 4 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
pyfiglet
yt_dlp
ffmpeg

15 changes: 15 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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'
]
)

0 comments on commit 3ca24a8

Please sign in to comment.