add poetry files

This commit is contained in:
2023-12-17 00:01:25 -05:00
parent 579db926d4
commit 0288d0d4d4
2 changed files with 235 additions and 0 deletions

19
pyproject.toml Normal file
View File

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