-
Notifications
You must be signed in to change notification settings - Fork 4
/
mix.exs
39 lines (34 loc) · 817 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
defmodule ElixirEllipticCurve.Mixfile do
use Mix.Project
def project do
[
app: :ecc,
version: "0.1.3",
elixir: ">=1.6.0",
description: description(),
package: package(),
deps: deps()
]
end
def application do
[extra_applications: [:public_key]]
end
defp deps do
[]
end
def description do
"""
An elixir module for elliptic curve cryptography.
It can be used either as a library or as a GenServer-Task
for signing messages and verifying signatures with a public key.
"""
end
defp package do
[
files: ["lib", "mix.exs", "README*", "LICENSE*", "ec_*_key.pem", "test"],
contributors: ["Marius Melzer"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/farao/elixir-ecc"}
]
end
end