-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
49 lines (43 loc) · 1.08 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
defmodule ExSchedule.Mixfile do
use Mix.Project
def project do
[
app: :ex_schedule,
version: "0.2.0",
elixir: "~> 1.13",
start_permanent: Mix.env() == :prod,
deps: deps(),
name: "ExSchedule",
package: package(),
description: description(),
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test
]
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:ex_doc, "~> 0.24", only: :dev, runtime: false},
{:credo, "~> 1.6", only: [:dev, :test], runtime: false},
{:excoveralls, "~> 0.8", only: :test}
]
end
defp description, do: "Library to run tasks in an interval basis"
defp package do
[
files: ["lib", "mix.exs", "README.md", ".formatter.exs"],
maintainers: ["Dimitris Zorbas", "Luiz Varela"],
licenses: ["MIT"],
links: %{github: "https://github.com/quiqupltd/ex_schedule"}
]
end
end