Packages

Helper macros for defining constant values in modules

Current section

Files

Jump to
Raw

mix.exs

# SPDX-FileCopyrightText: 2024 Łukasz Niemier <#@hauleth.dev>
#
# SPDX-License-Identifier: MIT
defmodule Defconstant.MixProject do
use Mix.Project
@version "2.0.0"
def project do
[
app: :defconstant,
description: "Helper macros for defining constant values in modules",
version: @version,
elixir: "~> 1.15",
start_permanent: Mix.env() == :prod,
package: %{
licenses: ~W[MIT],
links: %{
"GitHub" => "https://github.com/hauleth/defconst"
}
},
deps: [
{:ex_doc, ">= 0.0.0", only: [:dev]},
{:benchee, ">= 0.0.0", only: [:dev]}
],
docs: [
main: "Defconstant",
source_url: "https://github.com/hauleth/defconst",
source_ref: "v#{@version}",
formatters: ~w[html]
]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[]
end
end