Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Gistcafe.MixProject do
use Mix.Project
def project do
[
app: :gistcafe,
version: "0.1.0",
elixir: "~> 1.0",
start_permanent: Mix.env() == :prod,
description: "Useful utils for gist.cafe",
package: package(),
deps: deps(),
name: "gistcafe",
source_url: "https://github.com/ServiceStack/gistcafe-elixir"
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:httpoison, "~> 1.8"},
{:jason, "~> 1.2"},
{:mix_test_watch, "~> 1.0", only: :dev, runtime: false},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
]
end
defp package() do
[
name: "gistcafe",
# These are the default files included in the package
files: ~w(lib .formatter.exs mix.exs README* LICENSE* CHANGELOG*),
licenses: ["BSD-3-Clause-Attribution"],
links: %{"GitHub" => "https://github.com/ServiceStack/gistcafe-elixir"}
]
end
end