14 lines
601 B
Python
14 lines
601 B
Python
|
from distutils.core import setup
|
||
|
|
||
|
setup(
|
||
|
name='music-kraken',
|
||
|
version='1.0',
|
||
|
description='An extensive music downloader crawling the internet. It gets its metadata from a couple metadata '
|
||
|
'provider, and it scrapes the audiofiles.',
|
||
|
author='Hellow2',
|
||
|
author_email='Hellow2@outlook.de',
|
||
|
url='https://github.com/HeIIow2/music-downloader',
|
||
|
package_dir={'': 'music_kraken'},
|
||
|
install_requires=["requests~=2.28.1", "mutagen~=1.46.0", "musicbrainzngs~=0.7.1", "jellyfish~=0.9.0", "pydub~=0.25.1", "youtube_dl", "beautifulsoup4~=4.11.1", "pycountry~=22.3.5"]
|
||
|
)
|