We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2834fb1 commit 6767cc1Copy full SHA for 6767cc1
1 file changed
mix.exs
@@ -0,0 +1,29 @@
1
+defmodule Msgpack.Mixfile do
2
+ use Mix.Project
3
+
4
+ def project do
5
+ [app: :msgpack,
6
+ version: "0.3.5",
7
+ language: :erlang,
8
+ description: description,
9
+ package: package,
10
+ deps: deps]
11
+ end
12
13
+ defp deps do
14
+ []
15
16
17
+ defp description do
18
+ "MessagePack (de)serializer implementation for Erlang"
19
20
21
+ defp package do
22
+ [files: ~w(AUTHORS include LICENSE-2.0.txt README.md rebar.config
23
+ rebar.config.script src test),
24
+ maintainers: ["UENISHI Kota"],
25
+ licenses: ["Apache"],
26
+ links: %{"Website" => "http://msgpack.org/",
27
+ "GitHub" => "https://github.com/msgpack/msgpack-erlang"}]
28
29
+end
0 commit comments