forked from witchcrafters/algae
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
68 lines (58 loc) · 1.69 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
66
67
68
defmodule Algae.Mixfile do
use Mix.Project
def project do
[
app: :algae_goo,
aliases: aliases(),
deps: deps(),
preferred_cli_env: [quality: :test],
# Versions
version: "1.3.2",
elixir: "~> 1.9",
elixirc_paths: elixirc_paths(Mix.env()),
# Docs
name: "Algae",
docs: docs(),
# Hex
description: "Bootstrapped algebraic data types for Elixir",
package: package()
]
end
defp aliases do
[
quality: [
"test",
"credo --strict"
]
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp deps do
[
{:credo, "~> 1.5", only: [:dev, :test], runtime: false},
{:inch_ex, "~> 2.0", only: [:dev, :docs, :test], runtime: false},
{:dialyxir, "~> 1.1", only: :dev, runtime: false},
{:earmark, "~> 1.4", only: :dev, runtime: false},
{:ex_doc, "~> 0.23", only: :dev, runtime: false},
{:quark_goo, github: "doma-engineering/quark-goo", branch: "main"},
{:type_class_goo, github: "doma-engineering/type_class-goo", branch: "main"},
{:witchcraft_goo, github: "doma-engineering/witchcraft-goo", branch: "main"},
]
end
defp docs do
[
extras: ["README.md"],
logo: "./brand/mini-logo.png",
main: "readme",
source_url: "https://github.com/witchcrafters/algae"
]
end
defp package do
[
licenses: ["Apache-2.0"],
links: %{"GitHub" => "https://github.com/witchcrafters/algae"},
maintainers: ["Brooklyn Zelenka", "Steven Vandevelde"]
]
end
end