-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
67 lines (60 loc) · 2.05 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[project]
name = "avendesora"
version = "1.26"
description = "A password generator and account manager."
readme = "README.rst"
keywords = ["avendesora", "password", "password vault", "XKCD"]
authors = [
{name = "Ken Kundert"},
{email = "[email protected]"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Security :: Cryptography",
"Topic :: Utilities",
]
requires-python = ">=3.6"
dependencies = [
"appdirs",
"arrow!=0.14.*",
"cryptography",
# cryptography is optional, it provides rapid startup via encrypted manifests
"docopt",
"inform",
"pygobject",
# pygobject is optional, it provides a secret selection dialog
"python-gnupg>=0.4.4",
# Be careful. There's a package called 'gnupg' that's an
# incompatible fork of 'python-gnupg'. If both are installed, the
# user will probably have compatibility issues.
"pyotp",
# pyotp is optional, it provides one-time-password (OTP) secrets.
#scrypt",
# scrypt is optional. If you install it then Avendesora will offer
# it. It is not required because it is little used and installing it
# involves compiling C code and so significant additional
# dependencies such as gcc.
]
[project.scripts]
avendesora = "avendesora.main:main"
[project.urls]
homepage = "https://avendesora.readthedocs.io"
documentation = "https://avendesora.readthedocs.io"
repository = "https://github.com/kenkundert/avendesora"
changelog = "https://avendesora.readthedocs.io/en/latest/releases.html"
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.ruff]
exclude = [".tox", "doc"]
[tool.ruff.lint]
select = ["F"]
ignore = []
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]