auto-video-thumbnail/project.clj

14 lines
548 B
Clojure
Raw Normal View History

2020-08-06 10:28:27 +02:00
(defproject video-optimize "1.0.3-SNAPSHOT"
2020-07-13 20:15:12 +02:00
:description "Watcher and optimize videos"
2020-07-13 19:39:35 +02:00
: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"]
2020-07-14 00:00:18 +02:00
;; Watcher
[hawk "0.2.11"]
;; Yaml
[clj-yaml "0.4.0"]]
2020-07-13 19:39:35 +02:00
:main ^:skip-aot video-optimize.core
2020-07-13 20:15:12 +02:00
:aot [video-optimize.core]
2020-07-13 19:39:35 +02:00
:repl-options {:init-ns video-optimize.core})