clj-ml/project.clj
2013-06-21 00:25:35 -04:00

15 lines
711 B
Clojure

(defproject cc.artifice/clj-ml "0.3.6"
:description "Machine Learning library for Clojure built around Weka and friends"
:java-source-paths ["src/java"]
:warn-on-reflection true
:license {:name "MIT License"
:url "http://opensource.org/licenses/MIT"}
:url "https://github.com/joshuaeckroth/clj-ml"
:dependencies [[org.clojure/clojure "1.4.0"]
[incanter/incanter-core "1.4.1"]
[incanter/incanter-charts "1.4.1"]
[nz.ac.waikato.cms.weka/weka-stable "3.6.9"]
[org.clojars.chapmanb/fast-random-forest "0.98"]]
:profiles {:dev
{:plugins [[lein-midje "2.0.0"]]
:dependencies [[midje "1.4.0"]]}})