-
Notifications
You must be signed in to change notification settings - Fork 8
/
mix.exs
42 lines (37 loc) · 935 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
42
defmodule Scientist.Mixfile do
use Mix.Project
def project do
[
app: :scientist,
version: "0.2.1",
elixir: "~> 1.2",
deps: deps(),
package: package(),
name: "Scientist",
source_url: "https://github.com/cwbriones/scientist",
description: """
A library for carefully refactoring critical paths in your elixir application.
"""
] ++ test()
end
defp test do
[test_coverage: [tool: ExCoveralls], preferred_cli_env: [coveralls: :test]]
end
def application do
[applications: [:logger]]
end
defp deps do
[
{:ex_doc, "~> 0.22.1", only: :dev, runtime: false},
{:excoveralls, "~> 0.12.3", only: :test}
]
end
defp package do
[
maintainers: ["Christian Briones"],
licenses: ["MIT"],
links: %{github: "https://github.com/cwbriones/scientist"},
files: ~w(lib LICENSE mix.exs README.md)
]
end
end