Initial Commit

This commit is contained in:
Doc
2025-10-12 20:43:56 -04:00
commit c2073a2c40
6 changed files with 185 additions and 0 deletions

22
pyproject.toml Normal file
View File

@@ -0,0 +1,22 @@
[project]
name = "yt2discord"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [
{ name = "Doc", email = "lastdoc39@gmail.com" }
]
requires-python = ">=3.12"
dependencies = [
"ffmpeg-python",
"rich",
"cyclopts",
"yt_dlp"
]
[project.scripts]
yt2discord = "yt2discord:main"
[build-system]
requires = ["uv_build>=0.8.15,<0.9.0"]
build-backend = "uv_build"