21 lines
518 B
TOML
21 lines
518 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "doli"
|
|
version = "1.0.0"
|
|
description = "Config linker for chezmoi and Nextcloud"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
license = { text = "MIT" }
|
|
authors = [{ name = "Kevin Veen-Birkenbach", email = "kevin@veen.world" }]
|
|
dependencies = ["PyYAML>=6.0"]
|
|
|
|
[project.urls]
|
|
Homepage = "https://www.veen.world/"
|
|
Repository = "https://github.com/kevinveenbirkenbach/dotlinker"
|
|
|
|
[project.scripts]
|
|
doli = "dotlinker.cli:main"
|