sp-essentials/pyproject.toml
2026-03-16 16:29:20 +01:00

28 lines
701 B
TOML

[project]
name = "sp-essentials"
version = "1.0.0"
authors = [
{ name = "Simplified Privacy" },
]
description = "A library that provides essential logic to downstream projects."
readme = "README.md"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux",
]
dependencies = [
"psutil >= 7.1.3, < 8.0.0",
"stem ~= 1.8.2",
]
[project.urls]
Homepage = "https://git.simplifiedprivacy.com/codeking/sp-essentials"
Issues = "https://git.simplifiedprivacy.com/codeking/sp-essentials/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["essentials"]