-
Notifications
You must be signed in to change notification settings - Fork 16
/
project.clj
31 lines (31 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
(defproject sicp "0.1.0-SNAPSHOT"
:description "Structure and Interpretation of Computer Programs"
:url "https://github.com/v-kolesnikov/sicp"
:license {:name "MIT"
:url "https://opensource.org/licenses/MIT"}
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/test.check "0.9.0"]
[rhizome "0.2.7"]
[quil "2.4.0"]]
:main ^:skip-aot sicp.core
:target-path "target/%s"
:profiles {:uberjar {:aot :all}
:dev [:project/dev :profiles/dev]
:project/dev {:dependencies
[[cljfmt "0.5.7"
slamhound "1.5.5"]]
:generators [[sicp-generator "0.1.2"]]
:plugins
[[lein-kibit "0.1.2"]
[lein-cljfmt "0.5.3"]
[lein-gen "0.2.1"]
[jonase/eastwood "0.2.5"]]
:aliases {"slamhound" ["run" "-m" "slam.hound"]}
:eastwood {:exclude-linters
[:constant-test,
:def-in-def]
:exclude-namespaces
[sicp.extra.graph.viz
sicp.extra.graph.render-all]}}
:profiles/dev {}
:profiles/test {}})