-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathmix.exs
52 lines (46 loc) · 1.04 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
defmodule Porcelain.Mixfile do
use Mix.Project
def project do
[
app: :porcelain,
version: "2.0.3",
elixir: "~> 1.3",
deps: deps(),
description: description(),
docs: docs(),
package: package(),
]
end
def application do
[
applications: [:logger, :crypto],
mod: {Porcelain.App, []},
]
end
def docs do
[
extras: [{"README.md", title: "Readme"}],
]
end
defp description do
"Porcelain implements a saner approach to launching and communicating " <>
"with external OS processes from Elixir. Built on top of Erlang's ports, " <>
"it provides richer functionality and simpler API."
end
defp package do
[
files: ["lib", "mix.exs", "README.md", "CHANGELOG.md", "LICENSE"],
maintainers: ["Alexei Sholik"],
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/alco/porcelain",
}
]
end
defp deps do
[
{:earmark, "> 0.0.0", only: :dev},
{:ex_doc, "> 0.0.0", only: :dev},
]
end
end