-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
41 lines (36 loc) · 898 Bytes
/
mix.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
defmodule Colors.Mixfile do
use Mix.Project
def project do
[
app: :colors,
version: "1.1.1",
elixir: ">= 1.0.0",
description: description(),
source_url: "https://github.com/lidashuang/colors",
homepage_url: "https://github.com/lidashuang/colors",
docs: [main: "Colors", extras: ["README.md"]],
package: package(),
deps: deps()
]
end
# Configuration for the OTP application
#
# Type `mix help compile.app` for more information
def application do
[applications: []]
end
defp deps do
[{:ex_doc, "~> 0.14", only: :dev, runtime: false}]
end
defp description do
"a colors util"
end
defp package do
[
contributors: ["lidashuang", "vim-zz"],
maintainers: ["lidashuang"],
licenses: ["Apache 2.0"],
links: %{"Github" => "https://github.com/lidashuang/colors"}
]
end
end