18 lines
447 B
Nim
18 lines
447 B
Nim
# Package
|
|
|
|
version = "1.0.0"
|
|
author = "Jonathan Bernard"
|
|
description = "URL shortener/expander for Probatem at https://pbtm.us"
|
|
license = "GPL3"
|
|
srcDir = "src"
|
|
bin = @["short_url"]
|
|
|
|
|
|
# Dependencies
|
|
|
|
requires "nim >= 2.2.4"
|
|
requires @["cliutils", "mummy", "namespaced_logging >= 2.1.2", "webby"]
|
|
|
|
task updateVersion, "Update the version of this package.":
|
|
exec "update_version interactive src/short_url.nim"
|