-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
45 lines (39 loc) · 1 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
defmodule Control.Mixfile do
use Mix.Project
def project do
[app: :control,
version: "0.1.0",
elixir: "~> 1.0",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [coveralls: :test, bench: :test],
description: description(),
package: package(),
deps: deps()]
end
def application do
[applications: [:logger]]
end
defp deps do
[
{:earmark, "~> 1.2", only: :dev},
{:ex_doc, "~> 0.18", only: :dev},
{:excoveralls, "~> 0.7", only: :test},
{:dialyze, "~> 0.2", only: :test},
{:dogma, "~> 0.1", only: :test},
{:benchfella, "~> 0.3", only: :test},
]
end
defp description do
"""
An exploratory look into functors, applicatives, and monads for Elixir.
"""
end
defp package do
[
maintainers: ["Shane Logsdon"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/slogsdon/elixir-control"}]
end
end