-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
57 lines (52 loc) · 1.45 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
57
defmodule Caustic.MixProject do
use Mix.Project
def project do
[
app: :caustic,
name: "Caustic",
source_url: "https://github.com/agro1986/caustic",
version: "0.1.25",
elixir: "~> 1.7",
description: description(),
build_embedded: Mix.env == :prod,
start_permanent: Mix.env() == :prod,
package: package(),
deps: deps(),
docs: [
main: "readme",
extras: ["README.md"]
]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
defp description do
"""
An Elixir cryptocurrency library which contains algorithms used in Bitcoin, Ethereum, and other blockchains.
Includes a rich cryptography, number theory, and general mathematics class library.
"""
end
defp package do
[
files: ["lib", "mix.exs", "README*", "LICENSE*"],
maintainers: ["agro1986"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/agro1986/caustic"}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ex_doc, "~> 0.29.4", only: :dev},
{:earmark, "~> 1.4.38", only: :dev},
{:dialyxir, "~> 1.0.0-rc.6", only: :dev, runtime: false},
{:stream_data, "~> 0.4.3", only: :test},
# {:dep_from_hexpm, "~> 0.3.0"},
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"},
]
end
end