-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.clj
30 lines (29 loc) · 1.37 KB
/
project.clj
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
26
27
28
29
30
(defproject opencpu-clj "0.3.1"
:description "OpenCPU-clj is a Clojure library for using the OpenCPU API"
:url "https://github.com/behrica/opencpu-clj"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:min-lein-version "2.0.0"
:dependencies [[net.mikera/core.matrix "0.62.0"]
[org.clojure/clojure "1.10.0"]
[org.clojure/data.json "2.4.0"]
[clj-http "3.12.3"]
[cheshire "5.10.2"]]
:plugins [[lein-midje-doc "0.0.24"]]
:profiles {:dev {:plugins [[lein-midje "3.2.1"]]
:dependencies [[midje "1.10.5"]]}}
:documentation
{:files
{"ocpu_test"
{:input "test/opencpu_clj/ocpu_test.clj"
:title "clj-opencpu/ocpu_text "
:sub-title "clojure client for opencpu.org"
:author "Carsten Behring"
:email "[email protected]"}
"core_test"
{:input "test/opencpu_clj/core_test.clj"
:title "clj-opencpu/core_test"
:sub-title "clojure client for opencpu.org"
:author "Carsten Behring"
:email "[email protected]"}}}
)