forked from twosigma/Cook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
24 lines (24 loc) · 1.1 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
(defproject cook/sim "0.1.0-SNAPSHOT"
:description "Simulation tests for Cook"
:dependencies [[org.clojure/clojure "1.8.0"]
[clj-time "0.9.0"]
[cheshire "5.5.0"]
[com.datomic/datomic-free "0.9.5344"
:exclusions [org.clojure/clojure joda-time]]
[com.datomic/simulant "0.1.8"]
[org.clojure/math.numeric-tower "0.0.4"]
[com.stuartsierra/component "0.3.1"]
[org.clojure/data.generators "0.1.2"]
[org.clojure/tools.cli "0.3.3"]
[org.clojure/algo.generic "0.1.2"]
;; [reloaded.repl "0.2.1"]
[clj-http "2.0.1"]
[prismatic/schema "1.1.3"]
[robert/bruce "0.8.0"]
[incanter "1.5.7"]]
:resource-paths ["resources"]
:main cook.sim.cli
:source-paths ["src/main"]
:profiles {:dev {:source-paths ["src/dev"]
:repl-options {:init-ns cook.sim.repl}
:dependencies [[reloaded.repl "0.2.1"]]}})