Packages

Simple way to set after-function callback

Current section

Files

Jump to
then mix.exs
Raw

mix.exs

defmodule Then.MixProject do
use Mix.Project
def project do
[
app: :then,
version: "1.0.0",
elixir: "~> 1.18",
start_permanent: Mix.env() == :prod,
deps: deps(),
name: "Then",
description: description(),
package: package()
]
end
def description do
"Simple way to set after-function callback"
end
def package do
[
name: "then",
files: ~w(lib .formatter.exs mix.exs README* LICENSE* CHANGELOG*),
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/bardoor/then"}
]
end
def application do
[
# nope
]
end
defp deps do
[
{:ex_doc, "~> 0.14", only: :dev, runtime: false}
]
end
end