refactoring and moving to poetry

This commit is contained in:
msramalho
2024-01-25 16:48:43 +00:00
parent a06ea0e26e
commit 253e2f0ebc
10 changed files with 402 additions and 165 deletions

29
pyproject.toml Normal file
View File

@@ -0,0 +1,29 @@
[tool.poetry]
name = "telegram-phone-number-checker"
version = "1.0.0"
description = "Check if phone numbers are connected to Telegram accounts."
authors = ["Bellingcat"]
license = "MIT"
readme = "README.md"
[tool.poetry.scripts]
telegram-phone-number-checker = "telegram_phone_number_checker.main:main_entrypoint"
[tool.poetry.dependencies]
python = "^3.9"
anyio = "4.2.0"
click = "8.1.7"
exceptiongroup = "1.2.0"
idna = "3.6"
pyaes = "1.6.1"
pyasn1 = "0.5.1"
python-dotenv = "1.0.1"
rsa = "4.9"
sniffio = "1.3.0"
telethon = "1.33.1"
typing-extensions = "4.9.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"