-
Notifications
You must be signed in to change notification settings - Fork 9
/
project.clj
24 lines (24 loc) · 1.39 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 zero.one/fxl "0.0.7"
:description "fxl is a Clojure spreadsheet library."
:url "https://gitlab.com/zero-one-open-source/fxl"
:license {:name "Apache License"
:url "https://www.apache.org/licenses/LICENSE-2.0"}
:dependencies [[com.google.api-client/google-api-client "1.31.3"]
[com.google.api-client/google-api-client-jackson2 "1.31.3"]
[com.google.apis/google-api-services-sheets "v4-rev20210316-1.31.0"]
[com.google.oauth-client/google-oauth-client-jetty "1.31.4"]
[expound "0.8.9"]
[failjure "2.2.0"]
[org.apache.poi/poi-ooxml "5.0.0"]
[org.clojure/math.combinatorics "0.1.6"]]
:profiles {:dev {:dependencies [[midje "1.9.10"]]
:plugins [[lein-ancient "0.7.0"]
[lein-cljfmt "0.7.0"]
[lein-cloverage "1.2.2"]
[lein-midje "3.2.2"]]
:cljfmt {:split-keypairs-over-multiple-lines? false
:remove-multiple-non-indenting-spaces? false
:indents {facts [[:inner 0] [:block 1]]
forv [[:inner 0] [:block 1]]
fact [[:inner 0] [:block 1]]}}}
:provided {:dependencies [[org.clojure/clojure "1.10.3"]]}})