streamrip/pyproject.toml

62 lines
1.6 KiB
TOML
Raw Normal View History

[tool.poetry]
name = "streamrip"
2023-03-17 06:23:00 +01:00
version = "1.9.7"
description = "A fast, all-in-one music ripper for Qobuz, Deezer, Tidal, and SoundCloud"
authors = ["nathom <nathanthomas707@gmail.com>"]
license = "GPL-3.0-only"
readme = "README.md"
homepage = "https://github.com/nathom/streamrip"
repository = "https://github.com/nathom/streamrip"
include = ["streamrip/config.toml"]
packages = [
{ include = "streamrip" },
{ include = "rip" },
]
2022-01-16 17:59:30 +01:00
keywords = ["hi-res", "free", "music", "download"]
classifiers = [
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
]
[tool.poetry.scripts]
2021-07-31 04:13:12 +02:00
rip = "rip.cli:main"
[tool.poetry.dependencies]
2021-10-26 22:13:38 +02:00
python = ">=3.8 <4.0"
requests = "^2.25.1"
mutagen = "^1.45.1"
click = "^8.0.1"
tqdm = "^4.61.1"
tomlkit = "^0.7.2"
pathvalidate = "^2.4.1"
2021-08-02 23:41:11 +02:00
simple-term-menu = {version = "^1.2.1", platform = 'darwin|linux'}
2023-03-17 03:53:03 +01:00
pick = {version = "^1.0.0", platform = 'win32|cygwin'}
2021-08-02 23:41:11 +02:00
windows-curses = {version = "^2.2.0", platform = 'win32|cygwin'}
2022-01-16 17:59:30 +01:00
Pillow = "^9.0.0"
2022-01-16 17:18:06 +01:00
deezer-py = "1.3.6"
2021-07-28 23:24:16 +02:00
pycryptodomex = "^3.10.1"
2021-12-14 01:51:16 +01:00
cleo = {version = "1.0.0a4", allow-prereleases = true}
2021-07-30 20:20:36 +02:00
appdirs = "^1.4.4"
m3u8 = "^0.9.0"
aiofiles = "^0.7.0"
2021-09-12 07:04:45 +02:00
aiohttp = "^3.7.4"
aiodns = "^3.0.0"
[tool.poetry.urls]
"Bug Reports" = "https://github.com/nathom/streamrip/issues"
[tool.poetry.dev-dependencies]
2021-07-24 20:43:31 +02:00
Sphinx = "^4.1.1"
autodoc = "^0.5.0"
2021-07-28 23:24:16 +02:00
types-click = "^7.1.2"
types-Pillow = "^8.3.1"
2021-07-30 20:20:36 +02:00
black = "^21.7b0"
isort = "^5.9.3"
2021-07-31 04:13:12 +02:00
flake8 = "^3.9.2"
2023-03-17 03:53:03 +01:00
setuptools = "^67.4.0"
2021-09-12 07:04:45 +02:00
pytest = "^6.2.5"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"