forked from mikera/vectorz-clj
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
23 lines (22 loc) · 1.12 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
;; This file is proveded as a convenience for Leiningen users
;;
;; The pom.xml is used for official builds, and should be considered the
;; definitive source for build configuration.
(defproject net.mikera/vectorz-clj "0.24.1-SNAPSHOT"
:description "Fast vector library for Clojure, building on Vectorz and using core.matrix"
:url "https://github.com/mikera/vectorz-clj"
:license {:name "GNU Lesser General Public License (LGPL)"
:url "http://www.gnu.org/licenses/lgpl.html"}
:source-paths ["src/main/clojure"]
:test-paths ["src/test/clojure"]
:dependencies [[org.clojure/clojure "1.6.0"]
[criterium/criterium "0.4.3"]
[org.clojure/tools.analyzer "0.4.0"]
[org.clojure/test.check "0.5.8"]
[net.mikera/cljunit "0.3.1"]
[net.mikera/clojure-utils "0.6.1"]
[net.mikera/core.matrix "0.28.0"]
[net.mikera/core.matrix.stats "0.4.0"]
[net.mikera/vectorz "0.39.0"]]
:repositories [["clojars.org" {:url "https://clojars.org/repo"
:name "Clojars repository"}]])