auto-video-thumbnail/project.clj
2020-07-13 20:15:12 +02:00

11 lines
459 B
Clojure

(defproject video-optimize "1.0.0-SNAPSHOT"
:description "Watcher and optimize videos"
:url "http://example.com/FIXME"
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:dependencies [[org.clojure/clojure "1.10.1"]
[hawk "0.2.11"]]
:main ^:skip-aot video-optimize.core
:aot [video-optimize.core]
:repl-options {:init-ns video-optimize.core})