-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.clj
25 lines (25 loc) · 1.19 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
(defproject nerchuko "0.1.20"
:description "Machine Learning in Clojure."
:url "http://github.com/sids/nerchuko"
:namespaces [nerchuko.classification
nerchuko.feature-selection
nerchuko.utils
nerchuko.helpers
nerchuko.text.helpers
nerchuko.classifiers.naive-bayes.multinomial
nerchuko.classifiers.naive-bayes.bernoulli
nerchuko.classifiers.naive-bayes.complement
nerchuko.feature-selectors.document-frequency
nerchuko.feature-selectors.collection-frequency
nerchuko.feature-selectors.chi-squared]
:dependencies [[org.clojure/clojure "1.1.0-master-SNAPSHOT"]
[org.clojure/clojure-contrib "1.0-SNAPSHOT"]
[clj-text "0.0.3"]]
:dev-dependencies [[leiningen/lein-swank "1.1.0"]
[lein-clojars "0.5.0-SNAPSHOT"]]
:autodoc {:name "Nerchuko"
:page-title "Nerchuko API Documentation"
:web-src-dir "http://github.com/sids/nerchuko/blob/"
:trim-prefix "nerchuko."
:load-except-list [#"src/nerchuko/examples/*"]
:copyright "Copyright 2010 Siddhartha Reddy"})