Packages

Pattern based string generator library and CLI

Current section

Files

Jump to
wildling mix.exs
Raw

mix.exs

defmodule Wildling.MixProject do
use Mix.Project
@source_url "https://github.com/dotmonk/wildling"
def project do
[
app: :wildling,
version: "2.0.2",
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: "Pattern based string generator library and CLI",
package: package(),
source_url: @source_url,
homepage_url: @source_url
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[]
end
defp package do
[
licenses: ["MIT"],
links: %{"GitHub" => @source_url},
files: ~w(lib mix.exs README.md LICENSE)
]
end
end