forked from codedge-llc/commandex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
51 lines (44 loc) · 1.06 KB
/
Copy pathmix.exs
File metadata and controls
51 lines (44 loc) · 1.06 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
defmodule Commandex.MixProject do
use Mix.Project
@version "0.4.1"
def project do
[
app: :commandex,
deps: deps(),
description: description(),
elixir: "~> 1.9",
elixirc_paths: elixirc_paths(Mix.env()),
name: "Commandex",
package: package(),
source_url: "https://github.com/codedge-llc/commandex",
start_permanent: Mix.env() == :prod,
version: @version
]
end
defp deps do
[
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:ex_doc, "~> 0.31", only: :dev}
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp description do
"""
Make complex actions a first-class data type.
"""
end
defp package do
[
files: ~w(lib mix.exs .formatter.exs README* LICENSE*),
maintainers: ["Henry Popp", "Tyler Hurst"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/codedge-llc/commandex"}
]
end
def application do
[
extra_applications: [:logger]
]
end
end