pix360_youtube/pyproject.toml
2023-12-12 14:17:54 +01:00

28 lines
730 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pix360_youtube"
version = "0.0.1"
authors = [
{ name="Kumi Systems e.U.", email="office@kumi.systems" },
]
description = "YouTube downloader module for PIX360"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"yt-dlp",
]
[project.urls]
"Homepage" = "https://kumig.it/kumisystems/pix360-youtube"
"Bug Tracker" = "https://kumig.it/kumisystems/pix360-youtube/issues"
[project.entry-points."pix360downloader"]
"pix360-youtube" = "pix360_youtube.modules:YouTubeDownloader"