clj-ml/project.clj

26 lines
1.2 KiB
Clojure
Raw 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.10"]
[nz.ac.waikato.cms.weka/chiSquaredAttributeEval "1.0.3"]
[nz.ac.waikato.cms.weka/attributeSelectionSearchMethods "1.0.6"]
[nz.ac.waikato.cms.weka/linearForwardSelection "1.0.1"]
[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.5"]
[org.clojars.remleduff/snowball "20051019-1"]
[junit/junit "4.11"]
[tw.edu.ntu.csie/libsvm "3.1"]
[org.clojure/data.xml "0.0.7"]
[org.apache.lucene/lucene-analyzers-common "4.3.0"]]
2013-02-04 15:55:36 +00:00
:profiles {:dev
{:plugins [[lein-midje "2.0.0"]]
2013-08-06 07:40:20 +00:00
:dependencies [[midje "1.4.0"]]}}
:codox {:output-dir "website/doc"
:src-dir-uri "http://github.com/joshuaeckroth/clj-ml/blob/master"
:src-linenum-anchor-prefix "L"})