kakushi/pyproject.toml

25 lines
557 B
TOML

[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "kakushi"
version = "0.1.0"
authors = [
{name = "Patrycja Rosa", email = "foss@ptrcnull.me"},
]
description = "an implementation of Secrets API for himitsu"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "BSD-2-Clause"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"pydbus >= 0.6",
"PyGObject >= 3.50.0",
"cryptography >= 43.0.3"
]
[project.scripts]
kakushi = "kakushi.__main__:entrypoint"