fix: fix pyproject.toml

This commit is contained in:
2026-05-16 18:15:42 +03:00
parent 7472eaccc7
commit 262f9a556f
+3 -3
View File
@@ -3,7 +3,7 @@ requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta" build-backend = "setuptools.build_meta"
[project] [project]
name = "ytpl-Sync" name = "ytpl-sync"
version = "1.1.1" version = "1.1.1"
description = "YouTube playlist Sync Thing" description = "YouTube playlist Sync Thing"
readme = "README.md" readme = "README.md"
@@ -28,11 +28,11 @@ test = [
Home = "https://github.com/darkzoul5/YoutubePlaylistSyncThing" Home = "https://github.com/darkzoul5/YoutubePlaylistSyncThing"
[project.scripts] [project.scripts]
ytpl-Sync = "ytpl-Sync.main:main" ytpl-sync = "app.cli:main"
[tool.setuptools] [tool.setuptools]
package-dir = {"" = "src"} package-dir = {"" = "src"}
[tool.setuptools.packages.find] [tool.setuptools.packages.find]
where = ["src"] where = ["src"]
include = ["ytpl-Sync*"] include = ["app*"]