-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
20 lines (20 loc) · 1014 Bytes
/
Copy pathproject.clj
File metadata and controls
20 lines (20 loc) · 1014 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(defproject superlinked/superlinked-clj "0.1.0-SNAPSHOT"
:description "Superlinked-style embedding pipeline in Clojure (JVM-only)"
:url "https://github.com/superlinked/superlinked-clj"
:license {:name "MIT"
:url "https://opensource.org/licenses/MIT"}
:dependencies [[org.clojure/clojure "1.12.0"]
[ai.djl/api "0.31.1"]
[ai.djl.huggingface/tokenizers "0.31.1"]
[ai.djl/model-zoo "0.31.1"]
[ai.djl.pytorch/pytorch-engine "0.31.1"]
[ai.djl.pytorch/pytorch-model-zoo "0.31.1"]
[cheshire "5.13.0"]
[clj-http "3.12.3"]]
:source-paths ["src"]
:test-paths ["test"]
:jvm-opts ["--add-opens" "java.base/java.nio=ALL-UNNAMED"]
:profiles {:dev {:source-paths ["dev"]}
:test {:jvm-opts ["--add-opens" "java.base/java.nio=ALL-UNNAMED"]}}
:deploy-repositories [["clojars" {:url "https://repo.clojars.org"
:sign-releases false}]])