music-kraken-core/pyproject.toml

67 lines
1.7 KiB
TOML
Raw Normal View History

[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]
include = ["music_kraken/*.py" ]
[tool.hatch.build.targets.wheel]
packages = ["music_kraken"]
[project.scripts]
music-kraken = "music_kraken.__main__:cli"
2024-04-09 08:43:07 +00:00
[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."
2024-04-09 08:32:17 +00:00
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",
]
2024-04-09 08:32:17 +00:00
dependencies = [
"requests~=2.31.0",
"responses~=0.24.1",
"beautifulsoup4~=4.11.1",
2024-04-09 08:32:17 +00:00
"ffmpeg-python~=0.2.0",
"ffmpeg-progress-yield~=0.7.8",
"mutagen~=1.46.0",
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",
"pycountry~=24.0.1",
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",
2024-04-09 08:32:17 +00:00
"sponsorblock~=0.1.3",
"youtube_dl",
]
2024-04-09 08:43:07 +00:00
dynamic = [
"version"
]