-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmix.exs
43 lines (39 loc) · 1.19 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
defmodule Etude.Mixfile do
use Mix.Project
def project do
[app: :etude,
version: "1.0.1",
elixir: "~> 1.0",
description: "futures for elixir/erlang",
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
"coveralls": :test,
"coveralls.circle": :test,
"coveralls.detail": :test,
"coveralls.html": :test
],
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
package: package,
deps: deps]
end
def application do
[applications: [:logger]]
end
defp deps do
[{:excheck, "~> 0.4.1", only: [:dev, :test, :bench]},
{:triq, github: "krestenkrab/triq", only: [:dev, :test, :bench]},
{:eministat, github: "jlouis/eministat", only: [:dev, :test, :bench]},
{:mix_test_watch, "~> 0.2", only: :dev},
{:fugue, "~> 0.1", only: [:test, :bench]},
{:excoveralls, "~> 0.5.1", only: [:test, :bench]},
{:dialyxir, "~> 0.3.5", only: [:dev]},
{:ex_doc, ">= 0.0.0", only: :dev}]
end
defp package do
[files: ["lib", "mix.exs", "README*"],
maintainers: ["Cameron Bytheway"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/exstruct/etude"}]
end
end