forked from skirino/croma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
46 lines (41 loc) · 1.17 KB
/
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
42
43
44
45
46
defmodule Croma.Mixfile do
use Mix.Project
@github_url "https://github.com/skirino/croma"
def project() do
[
app: :croma,
version: "0.9.1",
elixir: "~> 1.4",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
deps: deps(),
description: "Elixir macro utilities to make type-based programming easier",
package: package(),
source_url: @github_url,
homepage_url: @github_url,
test_coverage: [tool: Coverex.Task, coveralls: true],
]
end
def application() do
[]
end
defp deps() do
[
{:excheck, "~> 0.5", only: :test},
{:triq, github: "triqng/triq", only: :test},
{:coverex, "~> 1.4", only: :test},
{:dialyze, "~> 0.2", only: :dev},
{:earmark, "~> 1.2", only: :dev},
{:ex_doc, "~> 0.16", only: :dev},
{:inch_ex, "~> 0.5", only: :docs},
]
end
defp package() do
[
files: ["lib", "mix.exs", "README.md", "LICENSE"],
maintainers: ["Shunsuke Kirino"],
licenses: ["MIT"],
links: %{"GitHub repository" => @github_url},
]
end
end