-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
28 lines (28 loc) · 1.28 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
25
26
27
28
(defproject org.clojars.egri-nagy/kigen "24.11.xx"
:description "Computational semigroup theory software system shadowing several semigroup packages of the GAP computer algebra system."
:url "https://github.com/egri-nagy/kigen"
:license {:name "GNU GENERAL PUBLIC LICENSE"
:url "http://www.gnu.org/copyleft/gpl.html"}
:dependencies [[org.clojure/clojure "1.12.0"]
[org.clojure/math.combinatorics "0.3.0"]
[org.clojure/data.int-map "1.3.0"]
[orbit "24.11.25"]
[rolling-stones "1.0.3"]
[org.clojure/core.logic "1.1.0"]
[com.taoensso/timbre "6.6.1"]
[com.clojure-goes-fast/clj-memory-meter "0.3.0"]
[progrock "0.1.2"]
[com.bhauman/rebel-readline "0.1.4"]
[macroz/tangle "0.2.2"]]
:plugins [[lein-cloverage "1.2.4"]
[lein-kibit "0.1.11"]
[lein-ancient "0.7.0"]
[lein-bikeshed "0.5.2"]
[jonase/eastwood "1.4.3"]
[cider/cider-nrepl "0.50.2"]]
:jvm-opts ["-Djdk.attach.allowAttachSelf"]
:main ^:skip-aot kigen.core
:target-path "target/%s"
:profiles {:uberjar {:aot :all}}
:aliases {
"rebl" ["trampoline" "run" "-m" "rebel-readline.main"]})