1
0
mirror of https://github.com/darkzoul5/YoutubePlaylistSync.git synced 2026-07-04 04:53:58 +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" build-backend = "setuptools.build_meta"
[project] [project]
name = "ytpld" name = "ytplst"
version = "v1.1.1" version = "1.1.1"
description = "YouTube playlist downloader" description = "YouTube playlist Sync Thing"
readme = "README.md" readme = "README.md"
authors = [ { name = "Dark_Zoul" } ] authors = [ { name = "Dark_Zoul" } ]
license = { file = "LICENSE" } 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] [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] [tool.setuptools.packages.find]
where = ["src"] where = ["src"]
include = ["*"] include = ["ytplst*"]