Packages
Mishka Installer is a system plugin manager and run time installer for elixir.
Current section
Files
Jump to
Current section
Files
mishka_installer
mix.exs
mix.exs
defmodule MishkaInstaller.MixProject do
use Mix.Project
@version "0.1.5"
@source_url "https://github.com/mishka-group/mishka_installer"
def project do
[
app: :mishka_installer,
version: @version,
elixir: "~> 1.17",
name: "Mishka installer",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package(),
homepage_url: "https://github.com/mishka-group",
source_url: @source_url,
docs: docs(),
test_coverage: [
ignore_modules: [
MishkaInstaller.MnesiaRepo.State,
MishkaInstaller.Installer.PortHandler,
MishkaInstaller.MnesiaRepo,
MishkaInstaller.Installer.CompileHandler,
MishkaInstaller.Installer.Collect,
Collectable.MishkaInstaller.Installer.Collect,
~r/\.Support.MishkaPlugin\./
]
]
]
end
def application do
[
extra_applications: [:logger],
mod: {MishkaInstaller.Application, []}
]
end
defp deps do
[
{:phoenix_pubsub, "~> 2.2"},
{:req, "~> 0.5.17"},
{:plug, "~> 1.19"},
# Extra tools
{:mishka_developer_tools, "~> 0.1.10"},
{:guarded_struct, "~> 0.0.5"},
# We will cover telemetry in whole project
{:telemetry, "~> 1.4"},
# Dev and Test dependencies
{:ex_doc, "~> 0.40.1", only: :dev, runtime: false},
{:hex_core, "~> 0.15.0", only: :test}
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp description() do
"Mishka Installer is a system plugin manager and run time installer for elixir."
end
defp package() do
[
files: ~w(lib .formatter.exs mix.exs LICENSE README* Changelog.md),
licenses: ["Apache-2.0"],
maintainers: ["Shahryar Tavakkoli"],
links: %{
"GitHub" => @source_url,
"Changelog" => "https://hexdocs.pm/mishka_installer/changelog.html"
}
]
end
defp docs() do
[
main: "readme",
source_ref: "v#{@version}",
extras: [
"README.md",
"CHANGELOG.md"
],
source_url: @source_url
]
end
end