-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
65 lines (58 loc) · 1.52 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
defmodule DataTracer.MixProject do
use Mix.Project
@version "0.1.2"
def project do
[
app: :data_tracer,
version: @version,
description: description(),
elixir: "~> 1.11",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
docs: docs(),
source_url: "https://github.com/axelson/data_tracer",
homepage_url: "https://github.com/axelson/data_tracer"
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
mod: {DataTracer.Application, []},
extra_applications: [:logger]
]
end
def description do
"""
Elixir debug tool to facilitate inspection of data flow by capturing terms
for inspection in IEx.
"""
end
def package do
[
name: :data_tracer,
files: ["lib", "mix.exs", "README*", "LICENSE*"],
maintainers: ["Jason Axelson"],
licenses: ["Apache-2.0"],
links: %{
"GitHub" => "https://github.com/axelson/data_tracer",
"ChangeLog" => "https://github.com/axelson/data_tracer/blob/main/Changelog.md"
}
]
end
def docs do
[
source_ref: "v#{@version}",
source_url: "https://github.com/axelson/data_tracer"
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:machete, "~> 0.3.0", only: :test},
# {:machete, path: "~/dev/forks/machete", only: :test},
{:ex_doc, "~> 0.21", only: :docs},
{:dialyxir, ">= 0.0.0", only: [:dev], runtime: false}
]
end
end