Initial commit

This commit is contained in:
Hirad 2025-07-07 09:09:07 +03:30
parent d38a6dd66b
commit be9a605dac
28 changed files with 1994 additions and 0 deletions

26
pyproject.toml Normal file
View file

@ -0,0 +1,26 @@
[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 = [
"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*"]