Current section
Files
Jump to
Current section
Files
mix.exs
defmodule ExConfig.MixProject do
use Mix.Project
def project do
[
app: :ex_config,
version: "0.0.1",
elixir: "~> 1.8", # TODO: Test for minimal required version.
start_permanent: Mix.env() == :prod,
deps: [],
description: description(),
package: package(),
name: "ExConfig",
source_url: "https://github.com/sega-yarkin/ex_config",
]
end
def application() do
[extra_applications: []]
end
defp description() do
"Yet another Elixir app configuration package for fun and profit."
end
defp package() do
[
licenses: ["MIT"],
links: %{github: "https://github.com/sega-yarkin/ex_config"},
files: ~w(mix.exs README.md LICENSE lib),
]
end
end