tiddl3 (#194)

This commit is contained in:
Oskar Dudziński
2025-11-08 15:18:44 +01:00
committed by GitHub
parent c255d42283
commit b87888536e
80 changed files with 4029 additions and 2204 deletions
+20 -11
View File
@@ -1,13 +1,13 @@
[build-system]
requires = ["setuptools>=42", "wheel"]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tiddl"
version = "2.8.0"
version = "3.0.0a2"
description = "Download Tidal tracks with CLI downloader."
readme = "README.md"
requires-python = ">=3.11"
requires-python = ">=3.13"
authors = [{ name = "oskvr37" }]
classifiers = [
"Environment :: Console",
@@ -15,18 +15,27 @@ classifiers = [
"Operating System :: OS Independent",
]
dependencies = [
"pydantic>=2.9.2",
"requests>=2.20.0",
"requests-cache>=1.2.1",
"click>=8.1.7",
"mutagen>=1.47.0",
"ffmpeg-asyncio>=0.1.3",
"aiofiles>=25.1.0",
"aiohttp>=3.13.2",
"m3u8>=6.0.0",
"rich>=13.9.4"
"mutagen>=1.47.0",
"pydantic>=2.12.4",
"requests>=2.32.5",
"requests-cache>=1.2.1",
"typer>=0.20.0",
]
[project.urls]
homepage = "https://github.com/oskvr37/tiddl"
[project.scripts]
tiddl = "tiddl.cli:cli"
tiddl = "tiddl.cli.app:app"
[tool.coverage.run]
omit = ["*/models/*", "*/models.py"]
[dependency-groups]
dev = [
"pytest>=8.4.2",
"pytest-mock>=3.15.1",
]