-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmix.exs
41 lines (36 loc) · 970 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
defmodule Bech32.MixProject do
use Mix.Project
def project do
[
app: :bech32,
version: "1.0.0",
elixir: "~> 1.9",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
description: description(),
package: package(),
name: "Bech32",
source_url: "https://github.com/f2pool/bech32-elixir",
deps: deps()
]
end
defp description() do
"This is an implementation of BIP-0173 or bech32. It also supports Nervos CKB."
end
defp package() do
[
name: "bech32",
files: ~w(lib .formatter.exs mix.exs README* LICENSE* CHANGELOG*),
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/f2pool/bech32-elixir"},
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[{:ex_doc, "~> 0.14", only: :dev, runtime: false}]
end
end