23 lines
496 B
TOML
23 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"
|