1
0
mirror of https://github.com/darkzoul5/YoutubePlaylistSync.git synced 2026-07-03 04:23:59 +03:00

fix: add missing fields to pyproject.toml

This commit is contained in:
2026-05-15 11:27:09 +03:00
parent 0ab96e4399
commit 658def3d58
+25 -6
View File
@@ -3,17 +3,36 @@ requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ytpld"
version = "v1.1.1"
description = "YouTube playlist downloader"
name = "ytplst"
version = "1.1.1"
description = "YouTube playlist Sync Thing"
readme = "README.md"
authors = [ { name = "Dark_Zoul" } ]
license = { file = "LICENSE" }
keywords = ["youtube", "yt-dlp", "playlist", "downloader"]
keywords = ["youtube", "yt-dlp", "playlist", "sync"]
requires-python = ">=3.10"
dependencies = [
"yt-dlp>=2026.3.17",
]
[project.optional-dependencies]
gui = [
"PySide6"
]
dev = [
"pytest",
"ruff",
"black"
]
[project.urls]
"Home" = "https://git.darkzoul.org/dark_zoul/youtube-playlist-downloader"
Home = "https://github.com/darkzoul5/YoutubePlaylistSyncThing"
[project.scripts]
ytplst = "ytplst.main:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
include = ["*"]
include = ["ytplst*"]