-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathproject.clj
More file actions
18 lines (18 loc) · 807 Bytes
/
project.clj
File metadata and controls
18 lines (18 loc) · 807 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(defproject coinbase-pro-clj "1.0.0"
:description "A Clojure wrapper for the Coinbase Pro API (formerly GDAX)."
:url "https://github.com/bpringe/coinbase-pro-clj"
:license {:name "MIT"
:url "https://opensource.org/licenses/MIT"}
:dependencies [[org.clojure/clojure "1.8.0"]
[pandect "0.6.1"]
[clj-http "3.7.0"]
[cheshire "5.8.0"]
[org.clojure/data.codec "0.1.1"]
[stylefruits/gniazdo "1.0.1"]
[org.clojure/data.json "0.2.6"]
[ring/ring-codec "1.1.1"]]
:codox {:namespaces [coinbase-pro-clj.core]
:metadata {:doc "FIXME: write docs"
:doc/format :markdown}
:output-path "docs"}
:set-version {:updates [{:path "README.md"}]})