-
Notifications
You must be signed in to change notification settings - Fork 4
/
mix.exs
40 lines (36 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
defmodule BIP0173.Mixfile do
use Mix.Project
def project do
[ app: :bip0173,
version: "0.1.2",
elixir: "~> 1.3",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
description: description(),
package: package(),
deps: deps()
]
end
def description do
"""
Elixir implementation of Bitcoin's address format for native SegWit outputs.
"""
end
def package do
[
files: ["lib", "mix.exs", "README.md"],
maintainers: ["Adán Sánchez de Pedro Crespo"],
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/stampery/elixir-bip0173",
"BIP-0141" => "https://github.com/bitcoin/bips/blob/master/bip-0141.mediawiki",
"BIP-0173" => "https://github.com/bitcoin/bips/blob/master/bip-0173.mediawiki",
"Other reference implementations" => "https://github.com/sipa/bech32/tree/master/ref"
}
]
end
defp deps do
[ {:ex_doc, "~> 0.16", only: :dev},
{:dialyxir, "~> 0.5", only: [:dev]} ]
end
end