diff --git a/src/music_kraken/music_kraken.egg-info/PKG-INFO b/src/music_kraken/music_kraken.egg-info/PKG-INFO index 954c604..2f0b4a2 100644 --- a/src/music_kraken/music_kraken.egg-info/PKG-INFO +++ b/src/music_kraken/music_kraken.egg-info/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: music-kraken -Version: 0.0.1 +Version: 0.0.2 Summary: An extensive music downloader crawling the internet. It gets its metadata from a couple metadata provider, and it scrapes the audiofiles. Home-page: https://github.com/HeIIow2/music-downloader Author: Hellow2 diff --git a/src/pyproject.toml b/src/pyproject.toml new file mode 100644 index 0000000..f3bd38a --- /dev/null +++ b/src/pyproject.toml @@ -0,0 +1,20 @@ +[build-system] +requires = ["setuptools>=61.0", "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"] +build-backend = "setuptools.build_meta" + +[project] +name = "music_kraken" +version = "0.0.2" +authors = [ + { name="Hellow2", email="Hellow2@outlook.de" }, +] +description = "An extensive music downloader crawling the internet. It gets its metadata from a couple metadata provider, and it scrapes the audiofiles." +readme = "README.md" +requires-python = ">=3.7" +classifiers = [ + "Programming Language :: Python :: 3", + "Operating System :: OS Independent", +] + +[project.urls] +"Homepage" = "https://github.com/HeIIow2/music-downloader" diff --git a/src/setup.py b/src/setup.py new file mode 100644 index 0000000..3188e14 --- /dev/null +++ b/src/setup.py @@ -0,0 +1,13 @@ +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"] +)