mirror of
https://github.com/arcan1s/ahriman.git
synced 2026-07-15 15:21:08 +00:00
41 lines
799 B
TOML
41 lines
799 B
TOML
[build-system]
|
|
requires = [
|
|
"hatchling",
|
|
]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "ahriman-triggers"
|
|
description = "ArcH linux ReposItory MANager, additional extensions"
|
|
readme = "../README.md"
|
|
requires-python = ">=3.13"
|
|
license = { file = "../COPYING" }
|
|
authors = [
|
|
{ name = "ahriman team" },
|
|
]
|
|
dependencies = [
|
|
"ahriman-core",
|
|
]
|
|
dynamic = [
|
|
"version",
|
|
]
|
|
|
|
[project.urls]
|
|
Documentation = "https://ahriman.readthedocs.io/"
|
|
Repository = "https://github.com/arcan1s/ahriman"
|
|
Changelog = "https://github.com/arcan1s/ahriman/releases"
|
|
|
|
[tool.hatch.version]
|
|
path = "../ahriman-core/src/ahriman/__init__.py"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
only-include = [
|
|
"src/ahriman",
|
|
]
|
|
sources = [
|
|
"src",
|
|
]
|
|
|
|
[tool.hatch.build.targets.wheel.shared-data]
|
|
"package/share" = "share"
|