Packages

A helper library for creating CLI Apps by following a basic skeleton

Current section

Files

Jump to
Raw

mix.exs

defmodule CliAppHelper.MixProject do
use Mix.Project
def project do
[
app: :cli_app_helper,
package: package(),
version: "0.1.3",
elixir: "~> 1.13",
start_permanent: Mix.env() == :prod,
source_url: "https://github.com/polymorfiq-tools/cli_app_helper",
homepage_url: "https://github.com/polymorfiq-tools/cli_app_helper",
deps: deps()
]
end
defp package do
[
description: "A helper library for creating CLI Apps by following a basic skeleton",
links: %{"GitHub" => "https://github.com/polymorfiq-tools/cli_app_helper"},
licenses: ["MIT"]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
# {:dep_from_hexpm, "~> 0.3.0"},
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
{:ex_doc, ">= 0.0.0", only: [:test, :dev], runtime: false},
{:mock, "~> 0.3.7", only: :test},
{:dialyxir, ">= 0.0.0", only: :test, runtime: false},
{:credo, ">= 0.0.0", only: :test, runtime: false}
]
end
end