Packages

A simple library providing a list of all Backblaze B2 regions with their names, geography, and continent data.

Current section

Files

Jump to
Raw

mix.exs

defmodule BackblazeRegions.MixProject do
use Mix.Project
@version "0.1.0"
@source_url "https://github.com/alexdont/backblaze_regions"
def project do
[
app: :backblaze_regions,
version: @version,
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package(),
source_url: @source_url
]
end
def application do
[
extra_applications: [:logger]
]
end
defp description do
"A simple library providing a list of all Backblaze B2 regions with their names, geography, and continent data."
end
defp package do
[
licenses: ["MIT"],
links: %{"GitHub" => @source_url},
files: ~w(lib mix.exs README.md LICENSE)
]
end
defp deps do
[
{:ex_doc, "~> 0.34", only: :dev, runtime: false}
]
end
end