18 lines
904 B
Clojure
18 lines
904 B
Clojure
(defproject humidity "0.1.0-SNAPSHOT"
|
|
:cloverage {:output "docs/cloverage"
|
|
:ns-exclude-regex [#"beowulf\.gendoc" #"beowulf\.scratch"]}
|
|
:codox {:metadata {:doc "**TODO**: write docs"
|
|
:doc/format :markdown}
|
|
:output-path "docs/codox"
|
|
:source-uri "https://github.com/simon-brooke/humidity/blob/master/{filepath}#L{line}"}
|
|
:dependencies [[org.clojure/clojure "1.12.5"]]
|
|
:description "Functions to compute relative humidity, absolute humidity, wet bulb
|
|
temperature, and other values related to humidity of air, given
|
|
partial data."
|
|
:license {:name "GPL-2.0-or-later"
|
|
:url "https://www.gnu.org/licenses/old-licenses/gpl-2.0.html"}
|
|
:repl-options {:init-ns humidity.core}
|
|
:plugins [[lein-ancient "1.0.0"]
|
|
[lein-cloverage "1.2.2"]
|
|
[lein-codox "0.10.8"]]
|
|
:url "https://git.journeyman.cc/simon/humidity")
|