-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmix.exs
More file actions
70 lines (61 loc) · 1.44 KB
/
Copy pathmix.exs
File metadata and controls
70 lines (61 loc) · 1.44 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
58
59
60
61
62
63
64
65
66
67
68
69
70
defmodule GenObject.MixProject do
use Mix.Project
@source_url "https://github.com/DockYard/gen_object"
@version "0.4.0"
def project do
[
name: "GenObject",
app: :gen_object,
version: @version,
elixir: "~> 1.18",
start_permanent: Mix.env() == :prod,
package: package(),
elixirc_paths: elixirc_paths(Mix.env()),
description: description(),
deps: deps(),
docs: docs()
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp description do
"GenObject"
end
defp docs do
[
extras: extras(),
main: "readme",
source_url: @source_url,
source_ref: @version
]
end
defp extras do
["README.md", "LICENSE.md"]
end
def package do
%{
maintainers: ["Brian Cardarella"],
files: ~w(lib mix.exs README.md LICENSE.md),
licenses: ["MIT"],
links: %{
"GitHub" => @source_url,
"Built by DockYard, Expert Elixir & Phoenix Consultants" => "https://dockyard.com/phoenix-consulting"
}
}
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
# {:inherit, "~> 0.3"},
{:inherit, "~> 0.4.0"},
{:inflex, "~> 2.1"},
{:ex_doc, "~> 0.34", only: :dev, runtime: false}
]
end
end