aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: ba516fd5af12ba9b5bab98f30d2e3b5925a8354b (plain) (blame)
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
[project]
name = "yoshi-cli"
version = "0.2.2"
authors = [
  { name="Christian Cleberg", email="hello@cleberg.net" },
]
description = "A password manager for the command line."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
    "Programming Language :: Python :: 3",
    "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
    "Operating System :: OS Independent",
]
dependencies = [
    "cryptography",
    "prettytable",
]

[project.urls]
Homepage = "https://git.sr.ht/~cxc/yoshi-cli"
Issues = "https://git.sr.ht/~cxc/yoshi-cli"

[project.scripts]
yoshi = "yoshi.cli:yoshi"