Packages

Decorators for Elixir.

Current section

Files

Jump to
decex mix.exs
Raw

mix.exs

defmodule Postgrex.MixProject do
use Mix.Project
def project() do
[
app: :decex,
version: "0.1.0",
elixir: "~> 1.0",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
description: description(),
package: package(),
deps: deps(),
name: "Dec",
source_url: "https://github.com/abetkin/dec.ex/"
]
end
def application() do
[]
end
defp deps() do
[
{:ex_doc, "~> 0.14", only: :dev, runtime: false}
]
end
defp description() do
"Decorators for Elixir."
end
defp package() do
[
# This option is only needed when you don't want to use the OTP application name
name: "decex",
# These are the default files included in the package
files: ~w(lib .formatter.exs mix.exs README* LICENSE* CHANGELOG*),
licenses: ["Apache-2.0"],
links: %{"GitHub" => "https://github.com/elixir-ecto/postgrex"}
]
end
end