-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
34 lines (30 loc) · 877 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "otpgui"
version = "0.2.3"
description = "Otp Generator GUI with python"
authors = ["Gianluca Mascolo <[email protected]>"]
license = "GPL-3.0-or-later"
homepage = "https://github.com/gianluca-mascolo/otpgui/"
repository = "https://github.com/gianluca-mascolo/otpgui/"
readme = "README.md"
packages = [
{ include = "otpgui.py" },
{ include = "otpversion.py" },
]
classifiers = [
"Environment :: X11 Applications :: GTK",
"Operating System :: POSIX :: Linux",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)"
]
[tool.poetry.dependencies]
python = "^3.7"
PyYAML = "^6.0"
pyotp = "^2.6.0"
PyGObject = "^3.42.1"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
[tool.poetry.scripts]
otpgui = "otpgui:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"