Current section
Files
Jump to
Current section
Files
elixir_kubernetes_cluster
mix.exs
mix.exs
defmodule ElixirKubernetesCluster.Mixfile do
use Mix.Project
def project do
[app: :elixir_kubernetes_cluster,
version: "0.1.0",
elixir: "~> 1.3",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
description: "A module that automacally connects to a Kubernetes API in order to obtain the address of other nodes and connects to them.",
package: package,
deps: deps()]
end
def package do
[
maintainers: ["André Cruz"],
licenses: ["GPLv3"],
links: %{"GitHub" => "https://github.com/edevil/elixir_kubernetes_cluster"}
]
end
def application do
[applications: [:logger]]
end
defp deps do
[{:ex_doc, ">= 0.0.0", only: :dev}]
end
end