-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
56 lines (48 loc) · 1.01 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
defmodule Dpos.MixProject do
use Mix.Project
@desc "DPoS offline and online tools for Elixir"
@version "0.4.0"
@url "https://github.com/sgessa/dpos-ex"
@maintainers ["Stefano Gessa"]
def project do
[
app: :dpos,
version: @version,
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps(),
# Hex
package: package(),
description: @desc,
source_url: @url,
# Docs
name: "DPoS",
docs: docs()
]
end
def application do
[extra_applications: [:logger]]
end
defp deps do
[
{:ex_doc, "~> 0.16", only: :dev, runtime: false},
{:credo, "~> 1.6", only: [:dev, :test], runtime: false},
{:httpoison, "~> 1.0"},
{:jason, "~> 1.0"}
]
end
def docs do
[
main: "readme",
source_ref: "v#{@version}",
extras: ["README.md", "LICENSE.txt"]
]
end
defp package do
[
maintainers: @maintainers,
licenses: ["MIT"],
links: %{"GitHub" => @url}
]
end
end