36 lines
756 B
TOML
36 lines
756 B
TOML
[project]
|
|
name = "telegramstickersgenerator"
|
|
version = "1.0.1"
|
|
description = "A simple tool to convert any images and/or gifs to webm extension so that they can be used to create animated sticker/emoji packs in Telegram."
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"ffmpeg-python==0.2.0",
|
|
"rich==13.9.4",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"poethepoet==0.31.1",
|
|
"pre-commit==4.0.1",
|
|
]
|
|
|
|
[tool.poe.tasks]
|
|
_git = "git add ."
|
|
_lint = "pre-commit run --all-files"
|
|
|
|
lint = ["_git", "_lint"]
|
|
run = "uv run main.py"
|
|
|
|
[tool.ruff]
|
|
target-version = "py313"
|
|
line-length = 100
|
|
|
|
[tool.ruff.lint]
|
|
extend-select = ["F", "UP", "B", "SIM", "I"]
|
|
|
|
[tool.ruff.format]
|
|
quote-style = "single"
|
|
indent-style = "space"
|
|
docstring-code-format = true
|