-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathmix.exs
More file actions
51 lines (46 loc) · 1.29 KB
/
mix.exs
File metadata and controls
51 lines (46 loc) · 1.29 KB
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
47
48
49
50
51
defmodule Muzak.MixProject do
use Mix.Project
@version "1.1.1"
@source_url "https://github.com/devonestes/muzak"
@homepage_url "https://devonestes.com/muzak"
def project do
[
app: :muzak,
description: "Mutation testing for Elixir",
elixir: "~> 1.10",
version: @version,
source_url: @source_url,
homepage_url: @homepage_url,
elixirc_paths: ["lib"],
start_permanent: false,
deps: [{:assertions, ">= 0.0.0", only: :test}, {:ex_doc, ">= 0.0.0", only: :dev}],
docs: docs(),
package: [
maintainers: ["Devon Estes"],
licenses: ["CC-BY-NC-ND-4.0"],
links: %{
"GitHub" => @source_url,
"Website" => @homepage_url
},
files: ["lib", "mix.exs", "LICENSE"]
]
]
end
def application, do: [extra_applications: [:logger]]
defp docs() do
[
main: "muzak",
api_reference: false,
source_ref: @version,
extras: [
"docs/muzak.md": [filename: "muzak", title: "Muzak"],
"docs/mutators.md": [filename: "mutators", title: "Included mutators"],
"docs/why_mutation_testing.md": [
filename: "what_is_mutation_testing",
title: "What is mutation testing?"
]
],
authors: ["Devon Estes"]
]
end
end