Add logic to handle editor specific flags dynamically, add --version flag, edit .gitignore, add tests

This commit is contained in:
2025-11-13 16:14:17 +00:00
parent b829faf658
commit 863b1b3a21
5 changed files with 543 additions and 12 deletions

View File

@@ -1,6 +1,6 @@
[tool.poetry]
name = "mirro"
version = "0.1.0"
version = "0.2.0"
description = "A safe editing wrapper: edits a temp copy, compares, and saves original backup if changed."
authors = ["Marco D'Aleo <marco@marcodaleo.com>"]
license = "GPL-3.0-or-later"
@@ -15,6 +15,10 @@ python = "^3.13"
[tool.poetry.scripts]
mirro = "mirro.main:main"
[tool.poetry.group.dev.dependencies]
pytest = "^9.0.1"
pytest-cov = "^7.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"