-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
54 lines (49 loc) · 1.27 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
defmodule SecretAgent.MixProject do
use Mix.Project
def project do
[
app: :secret_agent,
version: "0.8.4",
elixir: "~> 1.13",
start_permanent: Mix.env() == :prod,
deps: deps(),
test_coverage: [tool: ExCoveralls],
name: "Secret Agent",
source_url: "https://github.com/ahamez/secret_agent",
description: description(),
package: package(),
dialyzer: [plt_local_path: "priv/plts"]
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:credo, "~> 1.7.2", only: [:test, :dev], runtime: false},
{:dialyxir, "~> 1.0", only: [:test, :dev], runtime: false},
{:excoveralls, "~> 0.18", only: [:test], runtime: false},
{:ex_doc, "~> 0.22", only: [:dev], runtime: false},
{:file_system, "~> 1.0"},
{:nimble_options, "~> 1.1"},
{:telemetry, "~> 1.0"}
]
end
defp description do
"""
An Elixir library to manage secrets
"""
end
defp package do
[
name: :secret_agent,
files: ["lib", "mix.exs", "README*", "LICENSE"],
maintainers: ["Alexandre Hamez"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/ahamez/secret_agent"},
exclude_patterns: [".DS_Store"]
]
end
end