Packages

Demand is a library for creating interactive console prompts in Elixir.

Current section

Files

Jump to
demand mix.exs
Raw

mix.exs

defmodule Demand.MixProject do
use Mix.Project
@description """
Demand is a library for creating interactive console prompts in Elixir.
"""
@github "https://github.com/gmcabrita/demand"
def project do
[
app: :demand,
source_url: @github,
version: "0.1.3",
elixir: "~> 1.19",
start_permanent: Mix.env() == :prod,
description: @description,
deps: deps(),
package: package(),
docs: docs()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
defp docs() do
[
main: "readme",
logo: nil,
extras: ["README.md"]
]
end
defp package() do
[
files: ["lib", "mix.exs", "README.md", "LICENSE"],
maintainers: ["Gonçalo Mendes Cabrita"],
licenses: ["MIT"],
links: %{"GitHub" => @github}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
end