Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Brew.MixProject do
use Mix.Project
def project do
[
app: :brew,
version: "0.1.0",
elixir: "~> 1.18-dev",
start_permanent: Mix.env() == :prod,
package: package(),
deps: deps(),
name: "Brew",
description: "Elixir utility library for brewing up applcations faster",
source_url: "https://github.com/luechtdev/brew"
]
end
defp package do
[
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/luechtdev/brew"},
maintainers: ["Jannes Luecht @luechtdev"]
]
end
defp deps do
[{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}]
end
end