Files
gamdl/pyproject.toml
T
2026-07-16 19:08:20 -03:00

48 lines
1.0 KiB
TOML

[build-system]
requires = ["maturin>=1.8,<2"]
build-backend = "maturin"
[project]
name = "gamdl"
version = "3.8.4"
description = "A command-line app for downloading Apple Music songs, music videos and post videos."
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
dependencies = [
"async-lru>=2.0.5",
"click>=8.3.0",
"colorama>=0.4.6",
"dataclass-click>=1.0.4",
"httpx>=0.28.1",
"httpx-retries>=0.4.6",
"inquirerpy>=0.3.4",
"m3u8>=6.0.0",
"mutagen>=1.47.0",
"pillow>=12.0.0",
"pywidevine>=1.8.0",
"structlog>=25.5.0",
"yt-dlp>=2025.10.22",
]
[project.urls]
Repository = "https://github.com/glomatico/gamdl"
[project.scripts]
gamdl = "gamdl.cli.cli:main"
[dependency-groups]
dev = [
"maturin>=1.8",
"pytest>=9.0.3",
"pytest-asyncio>=1.3.0",
]
[tool.maturin]
manifest-path = "gamdl/downloader/ammuxer/Cargo.toml"
module-name = "gamdl._ammuxer"
python-source = "."
features = ["pyo3/extension-module"]
include = ["LICENSE"]
exclude = ["**/target/**"]