Packages

Library to run tasks in an interval basis

Current section

Files

Jump to
Raw

mix.exs

defmodule ExSchedule.Mixfile do
use Mix.Project
def project do
[
app: :ex_schedule,
version: "0.1.0",
elixir: "~> 1.5",
start_permanent: Mix.env() == :prod,
deps: deps(),
name: "ExSchedule",
package: package(),
description: description()
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:ex_doc, "~> 0.16", only: :dev, runtime: false},
{:credo, "~> 0.9.1", only: [:dev, :test], runtime: false}
]
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