Files
telegram-phone-number-checker/pyproject.toml
Jordan Gillard ac84e34d38 Extend --help text to include info for acquiring Telegram API ID/hash (#20)
* Fix Poetry mismatch b/w pyproject.toml/poetry.lock

* docs: poetry run command to use pyproject script

* Update .gitignore

* Add show_default kwarg to --output option

* Add envvar kwarg to options and move load_dotenv()

* Add info on creating/storing api credentials

* Bump version

---------

Co-authored-by: Galen Reich <54807169+GalenReich@users.noreply.github.com>
2024-03-05 09:57:06 +00:00

34 lines
831 B
TOML

[tool.poetry]
name = "telegram-phone-number-checker"
version = "1.0.8"
description = "Check if phone numbers are connected to Telegram accounts."
authors = ["Bellingcat"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/bellingcat/telegram-phone-number-checker"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/bellingcat/telegram-phone-number-checker/issues"
[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"