-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.clj
More file actions
executable file
·17 lines (17 loc) · 819 Bytes
/
project.clj
File metadata and controls
executable file
·17 lines (17 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(defproject array-utils "0.2.0-ALPHA"
:description "Utility macros and functions to make working with
primitive double arrays a bit more bearable."
:url "http://vinjeboy.com"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.5.0-RC4"]
[criterium "0.3.1"] ;; for benchmarking
[org.clojure/test.generative "0.3.0"] ;; awesome
;; stuff for the examples
[org.apache.commons/commons-math3 "3.0"]
[prismatic/plumbing "0.0.1"]]
:profiles {:dev {:plugins [[lein-marginalia "0.7.1"]
[lein-generative "0.1.4.0"]]}}
:warn-on-reflection true
;; :generative-path "test/array_utils/generative"
)