mirror of
https://github.com/arcan1s/ahriman.git
synced 2026-07-17 16:21:07 +00:00
700893ecac
* migrate to hatch * reorder tests * generic fixtures * straight forward conftest * fix docs generation * fix tox environments * reformat tomls * cleanup pyproject * some play with renaming * move root conftest into pytest plugins * fix setup script * move fixtures to __init__.py * remove duplicate fixtures * disable pylint warning * simplify configuration fixture * remove empty conftest * remove crap from local pyprojects
28 lines
493 B
TOML
28 lines
493 B
TOML
[build-system]
|
|
requires = [
|
|
"hatchling",
|
|
]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "ahriman-triggers"
|
|
dependencies = [
|
|
"ahriman-core",
|
|
]
|
|
description = "ArcH linux ReposItory MANager, additional extensions"
|
|
dynamic = [
|
|
"version",
|
|
]
|
|
requires-python = ">=3.13"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = [
|
|
"src/ahriman",
|
|
]
|
|
|
|
[tool.hatch.build.targets.wheel.shared-data]
|
|
"package/share" = "share"
|
|
|
|
[tool.hatch.version]
|
|
path = "../ahriman-core/src/ahriman/__init__.py"
|