-
Notifications
You must be signed in to change notification settings - Fork 6
/
mix.exs
88 lines (78 loc) · 1.95 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
defmodule BUPE.Mixfile do
use Mix.Project
@source_url "https://github.com/milmazz/bupe"
@version "0.6.2-dev"
def project do
[
app: :bupe,
version: @version,
name: "BUPE",
source_url: @source_url,
homepage_url: @source_url,
elixir: "~> 1.3",
description: description(),
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
elixirc_paths: elixirc_paths(Mix.env()),
elixirc_options: [warnings_as_errors: true],
docs: docs(),
package: package(),
deps: deps(),
dialyzer: dialyzer(),
escript: escript()
]
end
# Configuration for the OTP application
#
# Type "mix help compile.app" for more information
def application do
[extra_applications: [:xmerl, :eex, :crypto]]
end
def dialyzer do
[
plt_add_apps: [:mix, :ex_unit, :xmerl],
check_plt: true,
flags: [:error_handling, :race_conditions, :underspecs]
]
end
def escript do
[main_module: BUPE.CLI]
end
defp deps do
[
{:ex_doc, "~> 0.19", only: :dev, runtime: false},
{:dialyxir, "~> 1.0", only: :dev, runtime: false},
{:credo, "~> 1.6", only: [:dev, :test], runtime: false}
]
end
defp description do
"""
EPUB Generator and Parser
"""
end
defp docs do
[
extras: [
"CHANGELOG.md": [],
"CODE_OF_CONDUCT.md": [title: "Code of Conduct"],
"CONTRIBUTING.md": [title: "Contributing"],
LICENSE: [title: "License"],
"README.md": [title: "Overview"]
],
main: "readme"
]
end
defp package do
[
links: %{
"Changelog" => "https://hexdocs.pm/bupe/changelog.html",
"GitHub" => @source_url
},
maintainers: ["Milton Mazzarri"],
licenses: ["Apache-2.0"]
]
end
# Specifies which paths to compile per environment
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
end