From 590fc65c4caf8fd020d6199ceda98164987ba702 Mon Sep 17 00:00:00 2001 From: Lars Noack Date: Wed, 23 Nov 2022 09:20:28 +0100 Subject: [PATCH] should be ready for a new build :) --- build.sh | 6 +++--- pyproject.toml | 2 +- setup.py | 9 ++++++++- src/music_kraken.egg-info/PKG-INFO | 14 +++++++------- src/music_kraken.egg-info/SOURCES.txt | 8 +++++--- 5 files changed, 24 insertions(+), 15 deletions(-) diff --git a/build.sh b/build.sh index ae8ede6..d7d2364 100644 --- a/build.sh +++ b/build.sh @@ -5,10 +5,10 @@ python3 -m build echo "uploading............" python3 -m pip install --upgrade twine -twine upload dist/music_kraken* +# twine upload dist/music_kraken* -# twine upload --repository testpypi dist/music_kraken* -# exit +twine upload --repository testpypi dist/music_kraken* +exit echo "pushing............" git add . diff --git a/pyproject.toml b/pyproject.toml index cb465d1..1cd375c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "music_kraken" -version = "1.1.0" +version = "1.1.3" authors = [ { name="Hellow2", email="Hellow2@outlook.de" }, ] diff --git a/setup.py b/setup.py index e960b4b..77402f6 100644 --- a/setup.py +++ b/setup.py @@ -7,6 +7,13 @@ except ImportError: # packages=['music_kraken'], +#packages = find_packages(where="src") +packages = ['music_kraken', 'music_kraken.lyrics', 'music_kraken.audio_source', 'music_kraken.target', 'music_kraken.metadata', 'music_kraken.tagging', 'music_kraken.utils', 'music_kraken.audio_source.sources', 'music_kraken.database'] + +print("packages") +print(packages) +# packages.extend(["music_kraken.database"]) + setup( name='music-kraken', version='1.0', @@ -15,7 +22,7 @@ setup( author='Hellow2', author_email='Hellow2@outlook.de', url='https://github.com/HeIIow2/music-downloader', - packages=find_packages(where="src"), + packages=packages, package_dir={'': 'src'}, install_requires=[ "requests~=2.28.1", diff --git a/src/music_kraken.egg-info/PKG-INFO b/src/music_kraken.egg-info/PKG-INFO index 382029f..e7089db 100644 --- a/src/music_kraken.egg-info/PKG-INFO +++ b/src/music_kraken.egg-info/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: music-kraken -Version: 1.1.0 +Version: 1.1.3 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 @@ -38,14 +38,14 @@ music-kraken **What to download:** After that it prompts you for a search. Here are a couple examples how you can search: ``` -> #a Psychonaut 4 -searches for the artist "Psychonaut 4" +> #a +searches for the artist -> #a Crystal F #r das Leben dannach -searches for the release (album) "das Leben dannach" by the artist "Crystal F" +> #a #r +searches for the release (album) by the artist -> #r Death Pierce Me #t sterile nails and thunderbowels -searches for the track "sterile nails and thunderbowels" from the release "Death Pierce Me" +> #r Me #t +searches for the track from the release ``` After searching with this syntax it prompts you with multiple results. You can either choose one of those by inputing its id `int` or you can search for a new query. diff --git a/src/music_kraken.egg-info/SOURCES.txt b/src/music_kraken.egg-info/SOURCES.txt index fdccb34..55ac478 100644 --- a/src/music_kraken.egg-info/SOURCES.txt +++ b/src/music_kraken.egg-info/SOURCES.txt @@ -16,21 +16,23 @@ src/music_kraken/audio_source/fetch_source.py src/music_kraken/audio_source/sources/__init__.py src/music_kraken/audio_source/sources/local_files.py src/music_kraken/audio_source/sources/musify.py +src/music_kraken/audio_source/sources/source.py src/music_kraken/audio_source/sources/youtube.py +src/music_kraken/database/database.py +src/music_kraken/database/song.py +src/music_kraken/database/temp_database.py src/music_kraken/lyrics/__init__.py src/music_kraken/lyrics/genius.py src/music_kraken/lyrics/lyrics.py src/music_kraken/metadata/__init__.py src/music_kraken/metadata/metadata_fetch.py src/music_kraken/metadata/metadata_search.py -src/music_kraken/scraping/__init__.py -src/music_kraken/scraping/phonetic_compares.py src/music_kraken/tagging/__init__.py src/music_kraken/tagging/song.py src/music_kraken/target/__init__.py src/music_kraken/target/set_target.py src/music_kraken/utils/__init__.py -src/music_kraken/utils/database.py +src/music_kraken/utils/functions.py src/music_kraken/utils/object_handeling.py src/music_kraken/utils/phonetic_compares.py src/music_kraken/utils/shared.py \ No newline at end of file