-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
57 lines (52 loc) · 1.46 KB
/
mix.exs
File metadata and controls
57 lines (52 loc) · 1.46 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
52
53
54
55
56
57
defmodule ConstEnum.MixProject do
use Mix.Project
@source_url "https://github.com/bacnet-ex/const_enum"
def project do
[
app: :const_enum,
version: "0.1.0",
elixir: "~> 1.12",
start_permanent: Mix.env() == :prod,
deps: deps(),
dialyzer: [
ignore_warnings: "dialyzer.ignore-warnings.exs",
plt_add_apps: []
],
source_url: @source_url,
description: "ConstEnum is a simple constant enum library.",
docs: [
main: "readme",
source_ref: "master",
groups_for_docs: [Guards: & &1[:guard]],
groups_for_modules: [],
nest_modules_by_prefix: [],
extras: ["README.md"]
# before_closing_head_tag: &docs_before_closing_head_tag/1,
# before_closing_body_tag: &docs_before_closing_body_tag/1
],
package: package()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: []
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:credo, "~> 1.4", only: [:dev, :test], runtime: false},
{:dialyxir, "1.4.3", only: [:dev, :test], runtime: false},
{:doctor, "~> 0.21", only: [:dev, :test], runtime: false},
{:ex_doc, "~> 0.29", only: [:dev, :test], runtime: false}
]
end
defp package() do
[
maintainers: ["bacnet-ex"],
licenses: ["Apache-2.0"],
links: %{"GitHub" => @source_url}
]
end
end