23 lines
423 B
TOML
23 lines
423 B
TOML
[project]
|
|
name = "pytgpt-summarize"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"click>=8.1.8",
|
|
"python-tgpt>=0.8.1",
|
|
"yt-dlp>=2025.1.15",
|
|
]
|
|
|
|
[project.scripts]
|
|
summarize = "summarize:cli"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = [
|
|
"summarize.py",
|
|
]
|