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"]