forked from clj-python/clj-template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdeps.edn
31 lines (22 loc) · 1.34 KB
/
deps.edn
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
{
:mvn/repos {"clojars" {:url "https://repo.clojars.org/"}
"central" {:url "https://repo1.maven.org/maven2/"}
"bedatadriven" {:url "https://nexus.bedatadriven.com/content/groups/public/"}}
:paths ["src" "resources"]
:deps {
org.clojure/clojure {:mvn/version "1.10.3"}
clj-python/libpython-clj {:mvn/version "2.018"}
scicloj/clojisr {:mvn/version "1.0.0-BETA19"}
scicloj/tablecloth {:mvn/version "6.076"}
scicloj/notespace {:mvn/version "3-beta9"}
scicloj/scicloj.ml {:mvn/version "0.2.0"}
com.cnuernber/libjulia-clj {:mvn/version "1.000-beta-8"}
behrica/libapl-clj {:git/url "https://github.com/behrica/libapl-clj"
:git/sha "f40e17a95eaab6f81417d315f8499be7141b813c"}
;; {:mvn/version "0.1.2-ALPHA-SNAPSHOT"}
io.github.nextjournal/clerk {:mvn/version "0.6.387"}}
:aliases {
:cider-clj {:extra-deps {cider/cider-nrepl {:mvn/version "0.27.2"}
refactor-nrepl {:mvn/version "3.0.0-alpha13"}}
:main-opts ["-m" "nrepl.cmdline" "-b" "0.0.0.0" "-p" "12345"
"--middleware" "[cider.nrepl/cider-middleware,refactor-nrepl.middleware/wrap-refactor]"]}}}