-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
25 lines (25 loc) · 1.67 KB
/
project.clj
File metadata and controls
25 lines (25 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
;; Copyright (c) Lungsi Ngwua. All rights reserved
(defproject com.neuralgraphs/diman "1.1.0"
:description "A Clojure library for applying dimensional analysis."
:url "https://github.com/neuralgraphs/diman"
:license {:name "BSD 3-Clause 'New' or 'Revised' License"
:url "https://choosealicense.com/licenses/bsd-3-clause/"}
:dependencies [[org.clojure/clojure "1.10.3"]]
:plugins [[lein-codox "0.10.7"]] ; https://github.com/weavejester/codox
:codox {
:output-path "codox" ; write output to codox/
:source-uri ; document links to source files
"http://github.com/neuralgraphs/diman/blob/{version}/{filepath}#L{line}"
:source-paths ["src"] ; location of source files
;:doc-files ["doc/tutorial1.pdf",] ; supports .md (or .markdown), .adoc
}
:repl-options {:prompt (fn [ns] (str "diman <" ns "> => "));; Custom repl prompt for diman
:welcome (println "Welcome to diman\nA <dim>ensional <an>alysis tool capable of deriving dimensionless products.\nTo view built-in functions do (println default-functions).")
:init-ns diman.default
;:init (println "You are in" *ns*) ;; Top of the repl
}
:repositories [["releases" {:url "https://repo.clojars.org"
:creds :gpg}]
;; w/o gpg you are the only author,does not require jar verification from others
["snapshots" {:sign-releases false :url "https://repo.clojars.org"}]]
)