diff options
Diffstat (limited to 'readme.md')
-rw-r--r-- | readme.md | 32 |
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 | |||
4 | A toy implementation of a simple gzip-like LZSS text compressor written in Nim. | ||
5 | This project is part of the compressor course at the Paris-East Marne-la-Vallée university. | ||
6 | |||
7 | |||
8 | Test and build | ||
9 | -------------- | ||
10 | |||
11 | Building 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 | |||
17 | Usage | ||
18 | ----- | ||
19 | |||
20 | Compression and decompression are done using the `compress` and `decompress` commands repsectively. | ||
21 | |||
22 | The input stream is read from the standard input. | ||
23 | The result is outputted to the standard output. | ||
24 | |||
25 | |||
26 | License | ||
27 | ------- | ||
28 | |||
29 | Copyright (C) 2018 Pacien TRAN-GIRARD. | ||
30 | |||
31 | This project is distributed under the terms of the GNU Affero General Public License v3.0, as detailed in the provided `license.md` file. | ||
32 | |||