-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathproject.clj
More file actions
19 lines (19 loc) · 877 Bytes
/
project.clj
File metadata and controls
19 lines (19 loc) · 877 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
(defproject datacraft-sciences/confuse "0.1.2-SNAPSHOT"
:description "Utilities for Data Science"
:url "https://github.com/datacraft-sciences/confuse"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.9.0"]
[com.rpl/specter "1.0.1"]
;[org.clojure/spec.alpha "0.1.143"]
[net.mikera/core.matrix "0.61.0"] ]
:plugins [[lein-codox "0.10.3"]]
:codox {:output-path "docs"
:doc-files []}
:test-selectors {:default (complement :benchmarking)
:all (constantly true)}
:deploy-repositories [["releases" :clojars]]
:profiles {:dev {:dependencies [[org.clojure/test.check "0.9.0"]]}
:test {:dependencies [[citius "0.2.4" :exclusions [[org.clojure/clojure]]]]}
}
)