-
Notifications
You must be signed in to change notification settings - Fork 25
/
mix.exs
52 lines (47 loc) · 1.11 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
defmodule Plug.Crypto.MixProject do
use Mix.Project
@version "2.1.0"
@description "Crypto-related functionality for the web"
@source_url "https://github.com/elixir-plug/plug_crypto"
def project do
[
app: :plug_crypto,
version: @version,
elixir: "~> 1.11",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
name: "Plug.Crypto",
description: @description,
docs: [
main: "Plug.Crypto",
source_ref: "v#{@version}",
source_url: @source_url,
extras: ["CHANGELOG.md"]
]
]
end
def application do
[
extra_applications: [:crypto],
mod: {Plug.Crypto.Application, []}
]
end
defp deps do
[{:ex_doc, "~> 0.21", only: :dev}]
end
defp package do
%{
licenses: ["Apache-2.0"],
maintainers: [
"Aleksei Magusev",
"Andrea Leopardi",
"Eric Meadows-Jönsson",
"Gary Rennie",
"José Valim"
],
links: %{"GitHub" => @source_url},
files: ["lib", "mix.exs", "README.md", "CHANGELOG.md", "LICENSE"]
}
end
end