-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathproject.clj
More file actions
27 lines (25 loc) · 1.31 KB
/
Copy pathproject.clj
File metadata and controls
27 lines (25 loc) · 1.31 KB
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
(defproject org.soulspace/qclojure "0.25.0-SNAPSHOT"
:description "QClojure is a library to implement and simulate quantum and hybrid algorithms in idiomatic Clojure."
:license {:name "Eclipse Public License 1.0"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.12.4"]
[org.clojure/data.json "2.5.2"]
[org.clojure/spec.alpha "0.6.249"]
[org.clojure/test.check "1.1.3"]
[org.clojure/core.memoize "1.2.273"]
[generateme/fastmath "3.0.0-alpha4"]
[hiccup/hiccup "2.0.0"]
[zprint/zprint "1.3.0"]
[instaparse/instaparse "1.5.0"]]
:profiles {:dev [:user {}]
:sim-heavy {:jvm-opts ["-Xms8g" "-Xmx32g"
"-XX:MaxGCPauseMillis=200"
"-XX:+AlwaysPreTouch"]}
:container {:jvm-opts ["-XX:InitialRAMPercentage=2.0"
"-XX:MaxRAMPercentage=60.0"]}
:clay {:dependencies [[org.scicloj/clay "2.0.5"]]
:source-paths ["src" "notebooks"]}}
:scm {:name "git" :url "https://github.com/lsolbach/qclojure"}
:deploy-repositories [["clojars" {:sign-releases false :url "https://clojars.org/repo"}]]
;
)