CPG/Chess/nimfish.nimble

22 lines
482 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"
requires "nint128 >= 0.3.3"
task test, "Runs the test suite":
exec "python tests/suite.py -d 6 -b -p -s"
exec "python tests/suite.py -d 7 -b -p -s -f tests/heavy.txt"