1 /**
2     This module contains information about this software.
3 
4     Copyright: © 2018 Arne Ludwig <arne.ludwig@posteo.de>
5     License: Subject to the terms of the MIT license, as written in the
6              included LICENSE file.
7     Authors: Arne Ludwig <arne.ludwig@posteo.de>
8 */
9 module dentist.swinfo;
10 
11 import dentist.common : testingOnly;
12 import std..string : wrap;
13 
14 enum executableName = "dentist";
15 enum gitVersion = "v0.0.1";
16 enum version_ = gitVersion ~ testingOnly!"+testing";
17 enum description = "Close assembly gaps using long-reads with focus on correctness.".wrap;
18 enum copyright = "Copyright © 2018, Arne Ludwig <arne.ludwig@posteo.de>".wrap;
19 enum license = q"{
20     Subject to the terms of the MIT license, as written in the included
21     LICENSE file
22 }".wrap;