-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
37 lines (34 loc) · 830 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
defmodule Spyanator.Mixfile do
use Mix.Project
@description """
A Spy library for Elixir.
"""
def project do
[app: :spyanator,
version: "0.0.4",
elixir: "~> 1.3",
name: "Spyanator",
description: @description,
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [coveralls: :test],
package: package(),
deps: deps()]
end
defp package do
[
maintainers: ["Adam Beck"],
licenses: ["MIT"],
links: %{"Github" => "https://github.com/Gwash3189/spyanator"}
]
end
def application do
[applications: []]
end
defp deps do
[{:excoveralls, "~> 0.5", only: :test},
{:mix_test_watch, "~> 0.2", only: :dev},
{:ex_doc, "~> 0.14", only: :dev}]
end
end