forked from fazibear/export
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
43 lines (39 loc) · 788 Bytes
/
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
defmodule Export.Mixfile do
use Mix.Project
def project do
[
app: :export,
description: "Erlport wrapper for Elixir",
package: package(),
version: "0.2.0",
elixir: "~> 1.6",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps(),
docs: [
main: Export,
source_url: "https://github.com/pathpub/export"
]
]
end
def package() do
[
maintainers: ["jimmybot", "mdg"],
licenses: ["MIT"],
links: %{
github: "https://github.com/pathpub/export"
}
]
end
def application() do
[
applications: [:erlport]
]
end
defp deps() do
[
{:erlport, "~> 0.11"},
{:ex_doc, ">= 0.35.1", only: :dev},
]
end
end