-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.clj
More file actions
16 lines (15 loc) · 755 Bytes
/
Copy pathproject.clj
File metadata and controls
16 lines (15 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(defproject net.littleredcomputer/algebra "0.0.1"
:description "A library for calculations involving multivariate polynomials"
:url "http://github.com/littleredcomputer/sicmutils"
:license {:name "MIT"
:url "http://www.opensource.org/licenses/MIT"}
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/core.match "0.3.0-alpha4"]]
:jvm-opts ["-Djava.util.logging.config.file=logging.properties"]
:test-selectors {:default (complement :long)}
:profiles {:test {:dependencies [[org.clojure/test.check "0.9.0"]
[criterium "0.4.4"]]}
:dev {:dependencies [[org.clojure/test.check "0.9.0"]
[criterium "0.4.4"]]}
}
)