Packages

LXMF (Lightweight Extensible Message Format) for Elixir compatible with Reticulum

Current section

Files

Jump to
lxmf_ex mix.exs
Raw

mix.exs

defmodule LxmfEx.MixProject do
use Mix.Project
def project do
[
app: :lxmf_ex,
version: "0.1.0",
elixir: "~> 1.17",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package(),
docs: [
main: "readme",
extras: ["README.md"],
source_url: "https://github.com/twenty-eighty/lxmf_ex"
]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger],
mod: {LxmfEx.Application, []}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:reticulum_ex, "~> 0.1.0"},
{:msgpax, "~> 2.3"},
{:ex_doc, "~> 0.34", only: :dev, runtime: false}
]
end
defp description do
"LXMF (Lightweight Extensible Message Format) for Elixir compatible with Reticulum"
end
defp package do
[
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/twenty-eighty/lxmf_ex", "LXMF" => "https://github.com/markqvist/lxmf"},
files: ["lib","LICENSE","mix.exs","README.md"]
]
end
end