Current section

Files

Jump to
Raw

mix.exs

defmodule FlameK8sBackend.MixProject do
use Mix.Project
@source_url "https://github.com/mruoss/flame_k8s_backend"
@version "0.1.0"
def project do
[
app: :flame_k8s_backend,
description: "A FLAME backend for Kubernetes",
version: @version,
elixir: "~> 1.15",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
docs: [
main: "readme",
extras: ["README.md", "CHANGELOG.md"],
source_ref: "v#{@version}",
source_url: @source_url
]
]
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
[
{:flame, "~> 0.1.5"},
{:k8s, "~> 2.5"},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
# {:dep_from_hexpm, "~> 0.3.0"},
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
]
end
defp package do
[
name: :flame_k8s_backend,
maintainers: ["Michael Ruoss"],
licenses: ["MIT"],
links: %{
"GitHub" => @source_url
},
files: ["lib", "mix.exs", "README*", "LICENSE*", "CHANGELOG.md"]
]
end
end