Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f20f8f4f31 | |||
| b3d2f7d2e6 | |||
| 4a858a0800 | |||
| 90ff8a94e5 | |||
| 24b6311c29 |
7
.github/FUNDING.yml
vendored
Normal file
7
.github/FUNDING.yml
vendored
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
github: kevinveenbirkenbach
|
||||||
|
|
||||||
|
patreon: kevinveenbirkenbach
|
||||||
|
|
||||||
|
buy_me_a_coffee: kevinveenbirkenbach
|
||||||
|
|
||||||
|
custom: https://s.veen.world/paypaldonate
|
||||||
15
CHANGELOG.md
15
CHANGELOG.md
@@ -1,3 +1,18 @@
|
|||||||
|
## [1.0.3] - 2025-12-16
|
||||||
|
|
||||||
|
* Added funding information
|
||||||
|
|
||||||
|
|
||||||
|
## [1.0.2] - 2025-12-16
|
||||||
|
|
||||||
|
* Name conflicts; Set module name to: docoli
|
||||||
|
|
||||||
|
|
||||||
|
## [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
|
||||||
|
|||||||
2
MIRRORS
2
MIRRORS
@@ -1,4 +1,4 @@
|
|||||||
git@github.com:kevinveenbirkenbach/dotlinker.git
|
git@github.com:kevinveenbirkenbach/dotlinker.git
|
||||||
ssh://git@git.veen.world:2201/kevinveenbirkenbach/dotlinker.git
|
ssh://git@git.veen.world:2201/kevinveenbirkenbach/dotlinker.git
|
||||||
ssh://git@code.infinito.nexus:2201/kevinveenbirkenbach/dotlinker.git
|
ssh://git@code.infinito.nexus:2201/kevinveenbirkenbach/dotlinker.git
|
||||||
https://pypi.org/project/doli/
|
https://pypi.org/project/docoli/
|
||||||
|
|||||||
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
|
||||||
@@ -1,4 +1,6 @@
|
|||||||
# dotlinker (doli)
|
# dotlinker (doli)
|
||||||
|
[](https://github.com/sponsors/kevinveenbirkenbach) [](https://www.patreon.com/c/kevinveenbirkenbach) [](https://buymeacoffee.com/kevinveenbirkenbach) [](https://s.veen.world/paypaldonate)
|
||||||
|
|
||||||
|
|
||||||
`dotlinker` (CLI: `doli`) helps you persist and synchronize configuration across multiple systems by
|
`dotlinker` (CLI: `doli`) helps you persist and synchronize configuration across multiple systems by
|
||||||
linking local config paths to either:
|
linking local config paths to either:
|
||||||
|
|||||||
@@ -3,8 +3,8 @@ requires = ["hatchling"]
|
|||||||
build-backend = "hatchling.build"
|
build-backend = "hatchling.build"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "doli"
|
name = "docoli"
|
||||||
version = "1.0.0"
|
version = "1.0.3"
|
||||||
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