-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmix.exs
33 lines (28 loc) · 848 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
defmodule Exos.Mixfile do
use Mix.Project
def project do
[app: :exos,
version: "2.0.0",
elixir: ">= 1.9.0",
description: description(),
package: package(),
deps: [{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}]]
end
def application do
[applications: [:logger]]
end
defp package do
[ maintainers: ["Arnaud Wetzel", "Jean Parpaillon"],
licenses: ["MIT"],
links: %{ "GitHub"=>"https://github.com/kbrw/exos" } ]
end
defp description do
"""
Create a GenServer in any language.
Exos contains a very simple GenServer which proxy calls and casts to a given
port command, encoding and decoding the message to the port using erlang
external binary term format. (see related projects :
clojure|python|node_erlastic on https://github.com/kbrw)
"""
end
end