CPG/Chess/nimfish.nimble

21 lines
389 B
Nim

# Package
version = "0.1.0"
author = "nocturn9x"
description = "A chess engine written in nim"
license = "Apache-2.0"
srcDir = "nimfish"
binDir = "bin"
installExt = @["nim"]
bin = @["nimfish"]
# Dependencies
requires "nim >= 2.0.4"
requires "jsony >= 1.1.5"
task test, "Runs the test suite":
exec "python tests/suite.py -d 6 --bulk"