66 lines
1.7 KiB
TOML
66 lines
1.7 KiB
TOML
[build-system]
|
|
requires = ["hatchling", "hatch-requirements-txt" ]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build]
|
|
directory = "dist"
|
|
|
|
[tool.hatch.build.targets.sdist]
|
|
include = ["music_kraken/*.py" ]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["music_kraken"]
|
|
|
|
[project.scripts]
|
|
music-kraken = "music_kraken.__main__:cli"
|
|
|
|
[tool.hatch.version]
|
|
path = "music_kraken/__init__.py"
|
|
|
|
[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."
|
|
authors = [{ name = "Hellow2", email = "hazel_is_cute@proton.me" }]
|
|
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",
|
|
]
|
|
dependencies = [
|
|
"requests~=2.31.0",
|
|
"responses~=0.24.1",
|
|
"beautifulsoup4~=4.11.1",
|
|
|
|
"ffmpeg-python~=0.2.0",
|
|
"ffmpeg-progress-yield~=0.7.8",
|
|
"mutagen~=1.46.0",
|
|
|
|
"mistune~=3.0.2",
|
|
"md-to-html~=0.7.3",
|
|
"jellyfish~=0.9.0",
|
|
"transliterate~=1.10.2",
|
|
"pycountry~=24.0.1",
|
|
|
|
"tqdm~=4.65.0",
|
|
"platformdirs~=4.2.0",
|
|
"pathvalidate~=2.5.2",
|
|
"toml~=0.10.2",
|
|
"typing_extensions~=4.7.1",
|
|
|
|
"sponsorblock~=0.1.3",
|
|
"youtube_dl",
|
|
]
|
|
dynamic = [
|
|
"version"
|
|
]
|