yandex-music-downloader/pyproject.toml
Lev Plyusnin 8d095450b0
Загрузка cookies из браузера
- Номер версии поднят до 2.0.0
- Код отформатирован с помощью ruff
- Удален функционал кэширования
2024-04-02 22:22:00 +07:00

21 lines
440 B
TOML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

[build-system]
requires = [
"setuptools",
"setuptools-git"
]
build-backend = "setuptools.build_meta"
[project]
name = "yandex-music-downloader"
version = "2.0.0"
description = "Загрузчик музыки с сервиса Яндекс.Музыка"
requires-python = ">=3.9"
readme = "README.md"
dependencies = [
"requests",
"eyed3",
"browser-cookie3"
]
[project.scripts]
yandex-music-downloader = "ymd.cli:main"