From 24b6311c29318c80707c0bf9bd991f86d3f83b78 Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Tue, 16 Dec 2025 19:25:28 +0100 Subject: [PATCH] Added hatch https://chatgpt.com/share/6941a2a4-7974-800f-8911-9ab0bf1e3873 --- Makefile | 3 +++ pyproject.toml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/Makefile b/Makefile index 1cc868f..d977653 100644 --- a/Makefile +++ b/Makefile @@ -25,3 +25,6 @@ clean: rm -rf .pytest_cache .ruff_cache .mypy_cache find . -type d -name "__pycache__" -print0 | xargs -0 -r rm -rf find . -type f -name "*.pyc" -delete + +build: + python -m build \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 6b12ef2..1a28f86 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,3 +18,6 @@ Repository = "https://github.com/kevinveenbirkenbach/dotlinker" [project.scripts] doli = "dotlinker.cli:main" + +[tool.hatch.build.targets.wheel] +packages = ["src/dotlinker"]