defmodule Tarearbol.Mixfile do @moduledoc false use Mix.Project @app :tarearbol def project do [ app: @app, version: "0.3.2", elixir: "~> 1.4", start_permanent: Mix.env == :prod, package: package(), description: description(), deps: deps() ] end # Run "mix help compile.app" to learn about applications. def application do [ extra_applications: [:logger], mod: {Tarearbol.Application, []} ] end # Run "mix help deps" to learn about dependencies. defp deps do [ {:credo, "~> 0.8", only: :dev}, {:ex_doc, "~> 0.11", only: :dev} ] end defp description do """ The supervised tree of tasks, simplifying the process of handling: - recurrent tasks - retried tasks - long tasks - etc """ end defp package do [ name: @app, files: ~w|config lib mix.exs README.md|, maintainers: ["Aleksei Matiushkin"], licenses: ["MIT"], links: %{"GitHub" => "https://github.com/am-kantox/#{@app}", "Docs" => "https://hexdocs.pm/#{@app}"}] end end