20 lines
425 B
TOML
20 lines
425 B
TOML
[build-system]
|
||
requires = [
|
||
"setuptools",
|
||
"setuptools-git"
|
||
]
|
||
build-backend = "setuptools.build_meta"
|
||
|
||
[project]
|
||
name = "yandex-music-downloader"
|
||
version = "3.2.0b1"
|
||
description = "Загрузчик музыки с сервиса Яндекс.Музыка"
|
||
requires-python = ">=3.9"
|
||
readme = "README.md"
|
||
dependencies = [
|
||
"yandex-music",
|
||
"mutagen"
|
||
]
|
||
|
||
[project.scripts]
|
||
yandex-music-downloader = "ymd.cli:main"
|