-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 847 Bytes
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 847 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
36
[tool.poetry]
name = "andotp-decrypt"
version = "0.1.7"
description = "A backup decryptor for the andOTP Android app"
authors = ["asmw <asmw@asmw.org>"]
readme = "README.md"
homepage = "https://github.com/asmw/andOTP-decrypt"
license = "MIT"
packages = [
{ include = "andotp_decrypt.py" },
{ include = "generate_code.py" },
{ include = "generate_qr_codes.py" },
]
[tool.poetry.scripts]
andotp_decrypt = 'andotp_decrypt:main'
andotp_gencode = 'generate_code:main'
andotp_qrcode = 'generate_qr_codes:main'
[tool.poetry.dependencies]
python = "^3.7"
pyotp = "^2.3.0"
pycryptodome = "^3.9.4"
docopt = "^0.6.2"
pillow = ">=7.2,<10.0"
pyqrcode = "^1.2.1"
[tool.poetry.dev-dependencies]
rope = "^0.14.0"
pylint = "^2.4.4"
flake8 = "^3.8.4"
pytest = "^6.2.1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"