1 Commits

Author SHA1 Message Date
ac284d29e3 Delete __pycache__, change README files 2025-11-08 09:59:56 +00:00
6 changed files with 13 additions and 7 deletions

View File

@@ -17,17 +17,20 @@ It moves files to a per-user _trash_ instead of permanently deleting them, while
## Installation
Install via Poetry:
**NOTE:** To use `resrm` with `sudo`, the path to `resrm` must be in the `$PATH` seen by `root`.\
Either install `resrm` as `root`, use `sudo -E resrm`, or add the `$PATH` to `/etc/sudoers` using its `Defaults secure_path` parameter.
Install via PyPI:
```bash
poetry add resrm
pip install resrm
```
Or clone the repo and install locally:
```bash
git clone https://github.com/mdaleo404/resrm.git
cd resrm
cd resrm/resrm
poetry install
```

View File

@@ -17,17 +17,20 @@ It moves files to a per-user _trash_ instead of permanently deleting them, while
## Installation
Install via Poetry:
**NOTE:** To use `resrm` with `sudo`, the path to `resrm` must be in the `$PATH` seen by `root`.\
Either install `resrm` as `root`, use `sudo -E resrm`, or add the `$PATH` to `/etc/sudoers` using its `Defaults secure_path` parameter.
Install via PyPI:
```bash
poetry add resrm
pip install resrm
```
Or clone the repo and install locally:
```bash
git clone https://github.com/mdaleo404/resrm.git
cd resrm
cd resrm/resrm
poetry install
```

View File

@@ -1,6 +1,6 @@
[tool.poetry]
name = "resrm"
version = "0.1.0"
version = "0.1.1"
description = "drop-in replacement for rm with undo/restore built-in."
authors = ["Marco D'Aleo <marco@marcodaleo.com>"]
license = "GPL-3.0-or-later"