Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 90ff8a94e5 | |||
| 24b6311c29 |
@@ -1,3 +1,8 @@
|
|||||||
|
## [1.0.1] - 2025-12-16
|
||||||
|
|
||||||
|
* Now buildable via python
|
||||||
|
|
||||||
|
|
||||||
## [1.0.0] - 2025-12-16
|
## [1.0.0] - 2025-12-16
|
||||||
|
|
||||||
* Initial Release
|
* Initial Release
|
||||||
|
|||||||
3
Makefile
3
Makefile
@@ -25,3 +25,6 @@ clean:
|
|||||||
rm -rf .pytest_cache .ruff_cache .mypy_cache
|
rm -rf .pytest_cache .ruff_cache .mypy_cache
|
||||||
find . -type d -name "__pycache__" -print0 | xargs -0 -r rm -rf
|
find . -type d -name "__pycache__" -print0 | xargs -0 -r rm -rf
|
||||||
find . -type f -name "*.pyc" -delete
|
find . -type f -name "*.pyc" -delete
|
||||||
|
|
||||||
|
build:
|
||||||
|
python -m build
|
||||||
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "doli"
|
name = "doli"
|
||||||
version = "1.0.0"
|
version = "1.0.1"
|
||||||
description = "Config linker for chezmoi and Nextcloud"
|
description = "Config linker for chezmoi and Nextcloud"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.10"
|
requires-python = ">=3.10"
|
||||||
@@ -18,3 +18,6 @@ Repository = "https://github.com/kevinveenbirkenbach/dotlinker"
|
|||||||
|
|
||||||
[project.scripts]
|
[project.scripts]
|
||||||
doli = "dotlinker.cli:main"
|
doli = "dotlinker.cli:main"
|
||||||
|
|
||||||
|
[tool.hatch.build.targets.wheel]
|
||||||
|
packages = ["src/dotlinker"]
|
||||||
|
|||||||
Reference in New Issue
Block a user