Add Poetry files

This commit is contained in:
2023-12-19 00:39:39 -05:00
parent 7471e59a2a
commit c8768b1155
2 changed files with 307 additions and 0 deletions

20
pyproject.toml Normal file
View File

@@ -0,0 +1,20 @@
[tool.poetry]
name = "telegram group mirror"
version = "0.1.0"
description = "Many to Many telegram group mirroring"
authors = ["likewhoa <likewhoa@weboperative.com>"]
license = "AGPL"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
Telethon = "^1.33.1"
PyYAML = "^6.0.1"
asyncio = "^3.4.3"
pillow = "^10.1.0"
apscheduler = "^3.10.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"