initial commit

This commit is contained in:
2026-01-25 22:48:13 +03:00
commit 55ca3f7ed0
18 changed files with 848 additions and 0 deletions

22
pyproject.toml Normal file
View File

@ -0,0 +1,22 @@
[project]
name = "thon"
version = "0.1.0"
description = "Thon helper"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"aiofiles>=25.1.0",
"async-timeout>=5.0.1",
"python-socks==2.1.1",
"telethon>=1.42.0",
]
[project.scripts]
thon = "thon:main"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]