-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 783 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (30 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[tool.poetry]
name = "yaotpbot"
version = "0.1.0"
description = "A telegram bot to generate OTPs"
authors = ["Olla Gabriele <dev@ollaw.xyz>"]
readme = "README.md"
keywords = ["telegram-bot", "otp"]
license = "MIT"
repository = "https://github.com/ollaw/yaotpbot"
documentation = "https://github.com/ollaw/yaotpbot/blob/main/README.md"
packages = [
{ include = "otpbot" }
]
[tool.poetry.dependencies]
python = "^3.10"
python-telegram-bot = "^21.4"
boto3 = "^1.24.60"
pyotp = "^2.6.0"
dynamodb-encryption-sdk = "^3.1.0"
[tool.poetry.group.dev.dependencies]
mypy = "^1.11.1"
black = "^24.3.0"
flake8 = "^7.0.0"
[tool.isort]
profile = "black"
[tool.poetry.scripts]
run-bot = "otpbot.main:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"