Tidied up documentation. This is more or less ready for others to play with.
This commit is contained in:
parent
91343b9c10
commit
507a365682
15 changed files with 337 additions and 40 deletions
23
project.clj
23
project.clj
|
|
@ -1,7 +1,18 @@
|
|||
(defproject humidity "0.1.0-SNAPSHOT"
|
||||
:description "FIXME: write description"
|
||||
:url "http://example.com/FIXME"
|
||||
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
|
||||
:url "https://www.eclipse.org/legal/epl-2.0/"}
|
||||
:dependencies [[org.clojure/clojure "1.11.1"]]
|
||||
:repl-options {:init-ns humidity.core})
|
||||
: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")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue