Rename packages to plugins

This commit is contained in:
Kivi Kaitaniemi
2025-12-27 04:04:04 +02:00
parent 9b2fc79829
commit 041c976552
20 changed files with 12 additions and 12 deletions
+25
View File
@@ -0,0 +1,25 @@
[project]
name = "decman-pacman"
version = "1.0.0"
requires-python = ">=3.13"
dependencies = [
"decman==1.0.0",
"pyalpm",
"requests",
]
[project.entry-points."decman.plugins"]
pacman = "decman.plugins.pacman:Pacman"
aur = "decman.plugins.aur:AUR"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
namespaces = true
include = ["decman.plugins*"]
[tool.pytest.ini_options]
testpaths = ["tests"]