Srtify/pyproject.toml
2025-07-08 10:37:34 +03:30

27 lines
603 B
TOML

[build-system]
requires = ["setuptools>=65.5.1", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "srtify"
version = "0.1.0"
description = "CLI tool for translating SRT files using Gemini AI"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"black>=25.1.0",
"chardet>=5.2.0",
"click>=8.2.1",
"gemini-srt-translator>=2.1.3",
"platformdirs>=4.3.8",
"setuptools>=65.5.1",
"simple-term-menu>=1.6.6",
"wheel>=0.45.1",
]
[project.scripts]
srtify = "srtify.__main__:main"
[tool.setuptools.packages.find]
where = ["src"]
include = ["srtify*"]