krz/yoshi-cli

A password manager for the command line.

clone: git clone https://gitbay.org/krz/yoshi-cli.git

v0.2.2: pyproject.toml · raw

 1[project]
 2name = "yoshi-cli"
 3version = "0.2.2"
 4authors = [
 5  { name="Christian Cleberg", email="hello@cleberg.net" },
 6]
 7description = "A password manager for the command line."
 8readme = "README.md"
 9requires-python = ">=3.8"
10classifiers = [
11    "Programming Language :: Python :: 3",
12    "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
13    "Operating System :: OS Independent",
14]
15dependencies = [
16    "cryptography",
17    "prettytable",
18]
19
20[project.urls]
21Homepage = "https://git.sr.ht/~cxc/yoshi-cli"
22Issues = "https://git.sr.ht/~cxc/yoshi-cli"
23
24[project.scripts]
25yoshi = "yoshi.cli:yoshi"