sya

split youtube audio tracks, with an optional pyqt gui
git clone git://src.gearsix.net/sya
Log | Files | Refs | Atom | README

commit a22cd1336fc4a2d9eab85233e471f22b14972cad
parent c60bf9bfdf2539ee2427ba206106fe3281d1e8f5
Author: gearsix <gearsix@tuta.io>
Date:   Sat, 31 Jul 2021 20:10:57 +0100

added setup.py

Diffstat:
MREADME.txt | 2+-
Asetup.py | 24++++++++++++++++++++++++
2 files changed, 25 insertions(+), 1 deletion(-)

diff --git a/README.txt b/README.txt @@ -77,7 +77,7 @@ TRACKLIST Judd Madden - In Absence [5:02:05] INSTALL - If you'd like to use sya from the CLI, then "cd" into the the sya directory + If you'd like to install sya manually, then "cd" into the the sya directory and run "sudo make install" AUTHORS diff --git a/setup.py b/setup.py @@ -0,0 +1,24 @@ +import setuptools + +DESC='download & split long youtube videos as audio tracks' +LONG_DESC='download long youtube videos as audio tracks using youtube-dl and split them into multiple audio tracks using ffmpeg.' + +with open('README.txt', 'r') as f: + LONG_DESC = f.read() + +setuptools.setup( + name='sya', + version='1.0.0', + author='gearsix', + author_email='gearsix@tuta.io', + description=DESC, + long_description=LONG_DESC, + url='https://notabug.org/gearsix/sya', + packages=setuptools.find_packages(), + classifiers=[ + 'Programming Language :: Python', + 'Environment :: Console', + 'License :: Public Domain', + 'Operating System :: OS Independent', + ], +)