-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.clj
18 lines (18 loc) · 840 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(defproject tensorflow-clj "0.1"
:description "Gateway from Clojure to Tensorflow"
:url "https://github.com/enragedginger/tensorflow-clj"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.8.0"]
[net.mikera/core.matrix "0.58.0"]
[org.tensorflow/tensorflow "1.1.0"]
[org.tensorflow/proto "1.1.0"]
[org.clojars.ghaskins/protobuf "3.0.2-2"]
[com.google.protobuf/protobuf-java "3.2.0"]
[random-string "0.1.0"]
[camel-snake-kebab "0.4.0"]
[ubergraph "0.3.1"]]
:signing {:gpg-key "[email protected]"}
:main ^:skip-aot tensorflow-clj.core
:target-path "target/%s"
:profiles {:uberjar {:aot :all}})