-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathosh_tool.nimble
More file actions
24 lines (21 loc) · 773 Bytes
/
osh_tool.nimble
File metadata and controls
24 lines (21 loc) · 773 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# SPDX-FileCopyrightText: 2021-2023 Robin Vobruba <hoijui.quaero@gmail.com>
#
# SPDX-License-Identifier: Unlicense
version = "0.5.0"
author = "Robin Vobruba <hoijui.quaero@gmail.com>"
description = "A Tool for managing Open Source Hardware projects, taking care of meta-data and keeping the structure clean"
license = "AGPL3"
namedBin["src/main"] = "osh"
binDir = "build"
requires "nim >= 2.0.0"
requires "csvtools"
requires "docopt"
requires "https://github.com/hoijui/JsonSchemaValidator"
# HACK We use our own, patched version of this library,
# until this gets merged upstream:
# <https://github.com/treeform/jsony/pull/83>
# requires "jsony"
requires "https://github.com/hoijui/jsony#1f57ea0"
requires "shell"
requires "regex"
requires "results"