From 918a94960552745e7e84405e334103ee57bd450f Mon Sep 17 00:00:00 2001 From: gryf Date: Sun, 2 Oct 2022 15:10:58 +0200 Subject: [PATCH] Readme update. --- README.rst | 18 +++++------------- setup.cfg | 2 +- 2 files changed, 6 insertions(+), 14 deletions(-) diff --git a/README.rst b/README.rst index 195ba27..ea7a601 100644 --- a/README.rst +++ b/README.rst @@ -7,6 +7,7 @@ Midnight Commander extfslib Midnight Commander extfslib helper library for writing extfs archive plugins. + Description =========== @@ -15,7 +16,7 @@ those which operates on different kind of archives. Simplest plugin built on top of this lib would be: -.. code::python +.. code:: python import extfslib @@ -63,19 +64,19 @@ Installation Install from Pypi -.. code::shell-session +.. code:: shell-session # pip install extfslib or, as a user: -.. code::shell-session +.. code:: shell-session $ pip install extfslib --user or use virtualenv: -.. code::shell-session +.. code:: shell-session $ git clone https://github.com/gryf/mc_extfslib $ cd mc_extfslib @@ -83,15 +84,6 @@ or use virtualenv: $ source venv/bin/activate (venv) $ pip install -See individual installation plugins below. Basically it comes down to: - -* copying ``extfslib.py`` and plugin files to ``~/.local/share/mc/extfs.d/`` -* installing binary handlers (lha, unlzx, xdms and unadf) -* adding an entry in ``~/.config/mc/mc.ext``:: - - # arch - regex/\.pattern$ - Open=%cd %p/handler_filename:// License ======= diff --git a/setup.cfg b/setup.cfg index 4af2c29..e433f82 100644 --- a/setup.cfg +++ b/setup.cfg @@ -21,7 +21,7 @@ license_file = LICENSE long_description = file: README.rst name = extfslib url = https://github.com/gryf/mc_extfslib -version = 1.0 +version = 1.1 [options] py_modules = extfslib