Files
mirro/pyproject.toml

32 lines
766 B
TOML

[tool.poetry]
name = "mirro"
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"
readme = "README.md"
homepage = "https://github.com/mdaleo404/mirro"
repository = "https://github.com/mdaleo404/mirro"
packages = [{include = "mirro", from = "src"}]
[tool.poetry.dependencies]
python = "^3.13"
[tool.poetry.scripts]
mirro = "mirro.main:main"
[tool.poetry.group.dev.dependencies]
pytest = "^9.0.1"
pytest-cov = "^7.0.0"
pre-commit = "^3.8"
bandit = "^1.7"
black = "^25.0"
[tool.black]
line-length = 79
target-version = ["py313"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"