Add comprehensive documentation for the Thon project, including project overview, architecture, usage examples, and development conventions. Update the README.md file to provide clear installation instructions, usage examples, and project structure. Remove the unused CLI entry point from pyproject.toml.
20 lines
375 B
TOML
20 lines
375 B
TOML
[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",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|