clj-ml/project.clj

25 lines
1.2 KiB
Clojure

(defproject cc.artifice/clj-ml "0.5.0-SNAPSHOT"
:description "Machine Learning library for Clojure built around Weka and friends"
:java-source-paths ["src/java"]
:license {:name "MIT License"
:url "http://opensource.org/licenses/MIT"}
:url "https://github.com/joshuaeckroth/clj-ml"
:dependencies [[nz.ac.waikato.cms.weka/weka-dev "3.7.11"]
[nz.ac.waikato.cms.weka/chiSquaredAttributeEval "1.0.4"]
[nz.ac.waikato.cms.weka/attributeSelectionSearchMethods "1.0.7"]
[nz.ac.waikato.cms.weka/linearForwardSelection "1.0.2"]
[nz.ac.waikato.cms.weka/rotationForest "1.0.3"]
[nz.ac.waikato.cms.weka/paceRegression "1.0.2"]
[nz.ac.waikato.cms.weka/SPegasos "1.0.2"]
[nz.ac.waikato.cms.weka/LibSVM "1.0.6"]
[junit/junit "4.11"]
[tw.edu.ntu.csie/libsvm "3.17"]
[org.clojure/data.xml "0.0.7"]
[org.apache.lucene/lucene-analyzers-common "4.8.0"]
[org.apache.lucene/lucene-snowball "3.0.3"]]
:profiles {:dev
{:plugins [[lein-midje "2.0.0"]]
:dependencies [[midje "1.6.3"]]}}
:codox {:output-dir "website/doc"
:src-dir-uri "http://github.com/joshuaeckroth/clj-ml/blob/master"
:src-linenum-anchor-prefix "L"})