[tool.poetry] name = "streamrip" version = "2.0" description = "A fast, all-in-one music ripper for Qobuz, Deezer, Tidal, and SoundCloud" authors = ["nathom "] license = "GPL-3.0-only" readme = "README.md" homepage = "https://github.com/nathom/streamrip" repository = "https://github.com/nathom/streamrip" include = ["src/config.toml"] keywords = ["hi-res", "free", "music", "download"] classifiers = [ "License :: OSI Approved :: GNU General Public License (GPL)", "Operating System :: OS Independent", ] packages = [ { include = "streamrip" } ] [tool.poetry.scripts] rip = "streamrip.cli2:rip" [tool.poetry.dependencies] python = ">=3.10 <4.0" mutagen = "^1.45.1" tqdm = "^4.61.1" tomlkit = "^0.7.2" pathvalidate = "^2.4.1" simple-term-menu = {version = "^1.2.1", platform = 'darwin|linux'} pick = {version = "^1.0.0", platform = 'win32|cygwin'} windows-curses = {version = "^2.2.0", platform = 'win32|cygwin'} Pillow = "^9.0.0" deezer-py = "1.3.6" pycryptodomex = "^3.10.1" cleo = "^2.0" appdirs = "^1.4.4" m3u8 = "^0.9.0" aiofiles = "^0.7" aiohttp = "^3.7" aiodns = "^3.0.0" aiolimiter = "^1.1.0" pytest-mock = "^3.11.1" pytest-asyncio = "^0.21.1" rich = "^13.6.0" click-help-colors = "^0.9.2" [tool.poetry.urls] "Bug Reports" = "https://github.com/nathom/streamrip/issues" [tool.poetry.dev-dependencies] Sphinx = "^4.1.1" autodoc = "^0.5.0" types-click = "^7.1.2" types-Pillow = "^8.3.1" black = "^22" isort = "^5.9.3" flake8 = "^3.9.2" setuptools = "^67.4.0" pytest = "^7.4" [tool.pytest.ini_options] minversion = "6.0" addopts = "-ra -q" testpaths = [ "tests" ] log_level = "DEBUG" asyncio_mode = 'auto' log_cli = true [build-system] requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api"