18 lines
497 B
Nim
18 lines
497 B
Nim
# Package
|
|
|
|
bin = @["strawboss"]
|
|
version = "0.2.0"
|
|
author = "Jonathan Bernard"
|
|
description = "My personal continious integration worker."
|
|
license = "MIT"
|
|
srcDir = "src/main/nim"
|
|
|
|
# Dependencies
|
|
|
|
requires @["nim >= 0.16.1", "docopt >= 0.1.0", "tempfile", "jester", "bcrypt"]
|
|
requires "https://github.com/yglukhov/nim-jwt"
|
|
requires "https://git.jdb-labs.com/jdb/nim-lang-utils.git"
|
|
|
|
task test, "Runs the test suite.":
|
|
exec "nim c -r src/test/nim/runtests.nim"
|