forked from gigasquid/libpython-clj-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deps.edn
18 lines (18 loc) · 910 Bytes
/
deps.edn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{:paths ["src" "resources"]
:mvn/repos {"central" {:url "https://repo1.maven.org/maven2/"}
"clojars" {:url "https://clojars.org/repo"}}
:deps {org.clojure/clojure {:mvn/version "1.10.1"}
clj-python/libpython-clj {:mvn/version "1.37"}
org.clojure/data.csv {:mvn/version "0.1.4"}}
:aliases
{:test {:extra-paths ["test"]
:extra-deps {org.clojure/test.check {:mvn/version "0.10.0"}}}
:runner
{:extra-deps {com.cognitect/test-runner
{:git/url "https://github.com/cognitect-labs/test-runner"
:sha "f7ef16dc3b8332b0d77bc0274578ad5270fbfedd"}}
:main-opts ["-m" "cognitect.test-runner"
"-d" "test"]}
:uberjar {:extra-deps {seancorfield/depstar {:mvn/version "0.5.1"}}
:main-opts ["-m" "hf.depstar.uberjar" "libpython-clj-examples.jar"
"-C" "-m" "gigasquid.libpython-clj-examples"]}}}