kakushi/pyproject.toml
2023-06-16 20:59:10 +02:00

24 lines
496 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.7"
license = {text = "BSD-2-Clause"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"pydbus >= 0.6"
]
[project.scripts]
kakushi = "kakushi.main:entrypoint"