-
Notifications
You must be signed in to change notification settings - Fork 8
/
project.clj
20 lines (19 loc) · 913 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(defproject com.evocomputing/colors
"1.0.7"
:description "Utilities for color manipulations.
This is mostly code ported from the color module in SASS."
:url "http://jolby.github.com/colors/"
:license "Eclipse Public License (EPL)"
:dependencies [[org.clojure/clojure "1.10.1"]
[org.clojure/math.numeric-tower "0.0.4"]]
:autodoc {:name "colors"
:description "Color and colorspace calculation, manipulation and conversion in Clojure."
:page-title "Colors API documentation"
:copyright "Eclipse Public License (EPL)"
:web-src-dir "http://github.com/jolby/colors/blob/"
:web-home "http://jolby.github.com/colors/"}
:plugins [[lein-codox "0.10.7"]]
:codox {:src-dir-uri "https://github.com/jolby/colors/blob/master/"
:src-linenum-anchor-prefix "L"
:output-dir "target/doc"}
:min-lein-version "2.0.0")