2023-03-12 14:16:44 +00:00
[ build-system ]
2024-04-09 08:32:17 +00:00
requires = [ "hatchling" , "hatch-requirements-txt" ]
build-backend = "hatchling.build"
[ tool . hatch . build ]
directory = "dist"
[ tool . hatch . build . targets . sdist ]
2024-04-10 11:47:35 +00:00
include = [ "music_kraken/*.py" , "music_kraken/**/*.py" ]
2024-04-09 08:32:17 +00:00
[ tool . hatch . build . targets . wheel ]
packages = [ "music_kraken" ]
[ project . scripts ]
music-kraken = "music_kraken.__main__:cli"
2023-03-12 14:16:44 +00:00
2024-04-09 08:43:07 +00:00
[ tool . hatch . version ]
path = "music_kraken/__init__.py"
2023-03-12 14:16:44 +00:00
[ project ]
name = "music-kraken"
description = "An extensive music downloader crawling the internet. It gets its metadata from a couple of metadata providers, and it scrapes the audiofiles."
2024-04-09 08:32:17 +00:00
authors = [ { name = "Hellow2" , email = "hazel_is_cute@proton.me" } ]
2023-03-12 14:16:44 +00:00
license = "AGPL-3.0-or-later"
readme = "README.md"
repository = "https://github.com/HeIIow2/music-downloader"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta" ,
"Environment :: Console" ,
"Intended Audience :: End Users/Desktop" ,
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)" ,
"Natural Language :: English" ,
"Operating System :: OS Independent" ,
"Programming Language :: Python :: 3.10" ,
"Topic :: Multimedia :: Sound/Audio" ,
"Topic :: Utilities" ,
]
2024-04-09 08:32:17 +00:00
dependencies = [
"requests~=2.31.0" ,
"responses~=0.24.1" ,
"beautifulsoup4~=4.11.1" ,
2023-03-12 14:16:44 +00:00
2024-04-10 12:09:13 +00:00
"pyffmpeg~=2.4.2.18.1" ,
2024-04-09 08:32:17 +00:00
"ffmpeg-progress-yield~=0.7.8" ,
"mutagen~=1.46.0" ,
2023-03-12 14:16:44 +00:00
2024-04-10 12:09:13 +00:00
"rich~=13.7.1" ,
2024-04-09 10:21:03 +00:00
"mistune~=3.0.2" ,
2024-04-09 10:25:18 +00:00
"html2markdown~=0.1.7" ,
2024-04-09 08:32:17 +00:00
"jellyfish~=0.9.0" ,
"transliterate~=1.10.2" ,
2024-04-10 11:47:35 +00:00
"pycountry~=23.12.11" ,
2024-04-09 08:32:17 +00:00
2024-04-10 10:18:07 +00:00
"python-dotenv~=1.0.1" ,
2024-04-09 08:32:17 +00:00
"tqdm~=4.65.0" ,
"platformdirs~=4.2.0" ,
"pathvalidate~=2.5.2" ,
"toml~=0.10.2" ,
"typing_extensions~=4.7.1" ,
2023-03-12 14:16:44 +00:00
2024-04-09 08:32:17 +00:00
"sponsorblock~=0.1.3" ,
"youtube_dl" ,
]
2024-04-09 08:43:07 +00:00
dynamic = [
"version"
]