-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
16 lines (16 loc) · 767 Bytes
/
Copy pathproject.clj
File metadata and controls
16 lines (16 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(defproject delexical "0.1.0-SNAPSHOT"
:description "Call-time lexical closures for Clojure"
:url "https://github.com/TristeFigure/delexical"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.9.0"]
[org.clojars.tristefigure/shuriken "0.14.20"]
[dance "0.1.3"]
[threading "0.3.3"]
[lexikon "0.2.1"]]
:profiles {:dev {:dependencies [[codox-theme-rdash "0.1.2"]]}}
:plugins [[lein-codox "0.10.3"]]
:codox {:source-uri "https://github.com/TristeFigure/delexical/" \
"blob/{version}/{filepath}#L{line}"
:metadata {:doc/format :markdown}
:themes [:rdash]})