Current section
Files
Jump to
Current section
Files
runlet_net
mix.exs
mix.exs
defmodule RunletNet.Mixfile do
use Mix.Project
@version "1.0.5"
def project do
[
app: :runlet_net,
version: @version,
elixir: "~> 1.9",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
deps: deps(),
docs: docs(),
package: package(),
description: "Miscellaneous network related commands for runlets",
dialyzer: [
list_unused_filters: true,
flags: [
:unmatched_returns,
:error_handling,
:underspecs
]
],
name: "runlet_net",
source_url: "https://github.com/msantos/runlet_net",
homepage_url: "https://github.com/msantos/runlet_net"
]
end
defp docs do
[
source_ref: "v#{@version}",
extras: [
"README.md": [title: "Overview"]
],
main: "readme"
]
end
# Configuration for the OTP application
#
# Type "mix help compile.app" for more information
def application do
# [applications: [:logger]]
[extra_applications: [:inets, :ssl]]
end
defp package do
[
licenses: ["ISC"],
links: %{github: "https://github.com/msantos/runlet_net"}
]
end
# Dependencies can be Hex packages:
#
# {:mydep, "~> 0.3.0"}
#
# Or git/path repositories:
#
# {:mydep, git: "https://github.com/elixir-lang/mydep.git", tag: "0.1.0"}
#
# Type "mix help deps" for more examples and options
defp deps do
[
{:runlet, "~> 1.2"},
{:credo, "~> 1.6", only: [:dev, :test], runtime: false},
{:ex_doc, "~> 0.28", only: :dev, runtime: false},
{:dialyxir, "~> 1.1", only: [:dev], runtime: false},
{:gradient, github: "esl/gradient", only: [:dev], runtime: false}
]
end
end