-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (54 loc) · 1.48 KB
/
Copy pathpyproject.toml
File metadata and controls
66 lines (54 loc) · 1.48 KB
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "keyplus"
version = "0.3.1"
description = "Local-first password vault with CLI and optional GUI"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
authors = [
{ name = "ZFordDev", email = "zforddev@gmail.com" }
]
maintainers = [
{ name = "ZFordDev", email = "zforddev@gmail.com" }
]
keywords = ["password", "offline", "CLI", "UI", "vault", "security"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Topic :: Security :: Cryptography"
]
dependencies = [
"cryptography>=42.0.0",
"rich>=13.0.0",
"prompt-toolkit>=3.0.0",
"argon2-cffi>=23.1.0",
"pyside6",
"pywin32; sys_platform == 'win32'"
]
[project.optional-dependencies]
dev = [
"pytest",
"black",
"ruff"
]
[project.urls]
Homepage = "https://github.com/ZFordDev/keyplus"
Documentation = "https://docs.zford.dev/zforddev/keyplus"
Repository = "https://github.com/ZFordDev/keyplus.git"
"Bug Tracker" = "https://github.com/ZFordDev/keyplus/issues"
Changelog = "https://github.com/ZFordDev/keyplus/blob/main/CHANGELOG.md"
[project.scripts]
keyplus = "keyplus.__main__:main"
keyplus-gui = "keyplus.gui_main:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
include = ["keyplus*"]
[tool.pytest.ini_options]
pythonpath = ["src"]