Packages

Simple command line utility to access information about the user's digital ocean droplets

Current section

Files

Jump to
dossh mix.exs
Raw

mix.exs

defmodule Dossh.Mixfile do
use Mix.Project
def project do
[app: :dossh,
escript: escript_config,
version: "0.1.0",
elixir: "~> 1.3",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
description: description(),
package: package(),
deps: deps()]
end
def application do
[ applications: [:logger, :httpoison, :table_rex] ]
end
defp description do
"""
Simple command line utility to access information about the user's digital ocean droplets
"""
end
defp deps do
[
{ :httpoison, "~> 0.9" },
{ :poison, "~> 2.2" },
{ :table_rex, "~> 0.8" },
{ :ex_doc, ">= 0.0.0", only: :dev },
]
end
defp escript_config do
[ main_module: Dossh.CLI ]
end
defp package do
[ # These are the default files included in the package
files: ["lib", "mix.exs", "README*", "LICENSE*"],
maintainers: ["Stephen Mariano Cabrera <stephen.m.cabrera@gmail.com"],
licenses: ["MIT"],
links: %{Github => "https://github.com/smcabrera/dossh"}]
end
end