29 lines
536 B
TOML
29 lines
536 B
TOML
[project]
|
|
name = "youtube-gif"
|
|
version = "0.1.0"
|
|
description = "Creating gifs from youtube vidoes"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"click>=8.1.7",
|
|
"python-ffmpeg>=2.0.12",
|
|
"rich>=13.9.4",
|
|
"yt-dlp>=2024.11.18",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"ipykernel>=6.29.5",
|
|
"ipywidgets>=8.1.5",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.metadata]
|
|
allow-direct-references = true
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/youtube_gif"]
|