clj-ml/project.clj

26 lines
1.2 KiB
Clojure
Raw Permalink Normal View History

2013-10-13 01:30:57 +00:00
(defproject cc.artifice/clj-ml "0.5.0-SNAPSHOT"
2010-02-28 12:38:18 +00:00
:description "Machine Learning library for Clojure built around Weka and friends"
2013-02-04 15:55:36 +00:00
: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"]]
2013-02-04 15:55:36 +00:00
:profiles {:dev
{:plugins [[lein-midje "2.0.0"]]
:dependencies [[midje "1.6.3"]]}}
2013-08-06 07:40:20 +00:00
:codox {:output-dir "website/doc"
:src-dir-uri "http://github.com/joshuaeckroth/clj-ml/blob/master"
:src-linenum-anchor-prefix "L"})