23 lines
413 B
TOML
23 lines
413 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",
|
|
]
|
|
|
|
[project.scripts]
|
|
thon = "thon:main"
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|