aboutsummaryrefslogtreecommitdiff
path: root/readme.md
diff options
context:
space:
mode:
authorpacien2018-11-10 15:12:33 +0100
committerpacien2018-11-10 15:12:33 +0100
commit45ad627570ce08efd6ebec1cd0c723438d856894 (patch)
treecf2fce6cc065be59448de034b1c993504b11be0f /readme.md
downloadgziplike-45ad627570ce08efd6ebec1cd0c723438d856894.tar.gz
Init project
Diffstat (limited to 'readme.md')
-rw-r--r--readme.md32
1 files changed, 32 insertions, 0 deletions
diff --git a/readme.md b/readme.md
new file mode 100644
index 0000000..331d93a
--- /dev/null
+++ b/readme.md
@@ -0,0 +1,32 @@
1"À-la-gzip" LZSS compressor
2===========================
3
4A toy implementation of a simple gzip-like LZSS text compressor written in Nim.
5This project is part of the compressor course at the Paris-East Marne-la-Vallée university.
6
7
8Test and build
9--------------
10
11Building this project requires Nim and Nimble version 0.19.0 or later.
12
13* `nimble build` produces a binary named `main`
14* `nimble test` runs the included unit tests
15
16
17Usage
18-----
19
20Compression and decompression are done using the `compress` and `decompress` commands repsectively.
21
22The input stream is read from the standard input.
23The result is outputted to the standard output.
24
25
26License
27-------
28
29Copyright (C) 2018 Pacien TRAN-GIRARD.
30
31This project is distributed under the terms of the GNU Affero General Public License v3.0, as detailed in the provided `license.md` file.
32