Packages

A library for some common and less common Elixir routines not found in the standard library.

Current section

Files

Jump to
toolbelt mix.exs
Raw

mix.exs

defmodule Plumber.Mixfile do
use Mix.Project
def project do
[app: :toolbelt,
version: "0.3.1",
elixir: "~> 1.4",
description: description(),
deps: deps(),
package: package(),
# Docs
name: "Toolbelt",
source_url: "https://github.com/samvv/elixir-plumber",
homepage_url: "http://github.com/samvv/elixir-plumber",
docs: [main: "api-reference",
#logo: "path/to/logo.png",
extras: ["README.md"]]]
end
defp description() do
"""
A library for some common and less common Elixir routines not found in the standard library.
"""
end
defp package do
[name: :toolbelt,
maintainers: ["Sam Vervaeck"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/samvv/elixir-toolbelt",
"Docs" => "http://hexdocs.pm/toolbelt/"}]
end
defp deps do
[{:ex_doc, "~> 0.14", only: :dev}]
end
end