From 633d8e73162c1ca4be09015bcd8ed86991c07643 Mon Sep 17 00:00:00 2001 From: eric Date: Mon, 14 Oct 2019 21:55:25 -0400 Subject: [PATCH] update readme --- README.md | 13 +++++++++---- setup.py | 2 +- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 9a9209b..c47e6cc 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,10 @@ # backupy ``` -usage: backu.py [-h] [-m mode] [-c conflict-resolution] [-d] [--crc mode] - [--cleanup True|False] [-n] [-w] [--goahead] - source dest +usage: backupy [-h] [-m mode] [-c conflict-resolution] [-d] [--crc mode] + [--cleanup True|False] [-n] [--suppress] [--goahead] [-s] + [-l] + source [dest] Simple python script for backing up directories @@ -30,6 +31,10 @@ optional arguments: --cleanup True|False Remove directory if empty after a file move or deletion (default: True) -n, --norun Simulate the run - -w, --csv Write log.csv in os.getcwd() of results + --suppress Suppress logging; by default logs are written to + source/.backupy/log-yymmdd-HHMM.csv and + /.backupy/dirinfo.json --goahead Go ahead without prompting for confirmation + -s, --save Save configuration in source + -l, --load Load configuration from source ``` diff --git a/setup.py b/setup.py index 51d6b54..6d9ee41 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="backupy", - version="0.1.0", + version="0.1.1", description="Simple python script for backing up directories", long_description=long_description, long_description_content_type="text/markdown",