forked from incanter/incanter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
32 lines (32 loc) · 1.42 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
26
27
28
29
30
31
32
(defproject incanter "1.5.0-SNAPSHOT"
:description "Incanter is a Clojure-based, R-like statistical programming and data visualization environment."
:url "http://incanter.org/"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:scm {:name "git" :url "https://github.com/liebke/incanter"}
:min-lein-version "2.0.0"
:dependencies [[incanter/incanter-core "1.5.0-SNAPSHOT"]
[incanter/incanter-io "1.5.0-SNAPSHOT"]
[incanter/incanter-charts "1.5.0-SNAPSHOT"]
[incanter/incanter-mongodb "1.5.0-SNAPSHOT"]
[incanter/incanter-pdf "1.5.0-SNAPSHOT"]
[incanter/incanter-latex "1.5.0-SNAPSHOT"]
[incanter/incanter-excel "1.5.0-SNAPSHOT"]
[incanter/incanter-sql "1.5.0-SNAPSHOT"]
[incanter/incanter-zoo "1.5.0-SNAPSHOT"]
[swingrepl "1.3.0"
:exclusions [org.clojure/clojure
org.clojure/clojure-contrib]]
[jline "0.9.94"]]
:main incanter.main
:plugins [[lein-ritz "0.5.0"]]
:profiles {:dev {:resource-paths ["data"]}
:debug {:debug true}
}
:repl-options {:init-ns incanter.main
:init (do
(set! *print-length* 500)
(use 'clojure.repl))
}
:jvm-opts ["-Xmx1g"]
)