Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Bottler.Mixfile do
use Mix.Project
def project do
[app: :bottler,
version: "0.2.0",
elixir: "~> 1.0.0",
package: package,
description: """
Bottler is a collection of tools that aims to help you
generate releases, ship them to your servers, install them there, and
get them live on production.
"""]
end
def application do
[ applications: [:logger, :crypto],
included_applications: [:ssh, :public_key, :asn1] ]
end
defp package do
[contributors: ["Rubén Caro"],
licenses: ["MIT"],
links: %{github: "https://github.com/elpulgardelpanda/bottler"}]
end
end