Packages

This is an API wrapper around the VCOM API by meteocontrol. Please check the official website for more information on how to get an API key and all necessary credentials.

Current section

Files

Jump to
ex_vcom mix.exs
Raw

mix.exs

defmodule ExVcom.Mixfile do
use Mix.Project
@version "0.1.1"
def project do
[
app: :ex_vcom,
version: @version,
elixir: "~> 1.13",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
package: package(),
description: description(),
deps: deps(),
docs: docs()
]
end
# Configuration for the OTP application
#
# Type "mix help compile.app" for more information
def application do
# Specify extra applications you'll use from Erlang/Elixir
[
extra_applications: [:logger]
]
end
# Dependencies can be Hex packages:
#
# {:my_dep, "~> 0.3.0"}
#
# Or git/path repositories:
#
# {:my_dep, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.3.0"}
#
# Type "mix help deps" for more examples and options
defp deps do
[
{:credo, "~> 1.6.4", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.1.0", only: [:dev], runtime: false},
{:ex_doc, "~> 0.28.4", only: :dev, runtime: false},
{:tesla, "~> 1.2"},
{:poison, "~> 3.0"}
]
end
defp description() do
"""
This is an API wrapper around the VCOM API by meteocontrol. Please check the official website for more information
on how to get an API key and all necessary credentials.
"""
end
defp package() do
[
name: "ex_vcom",
files: ~w(lib mix.exs README* LICENSE*),
licenses: ["ISC"],
links: %{"Official VCOM API docs" => "https://meteocontrol.github.io/vcom-api"}
]
end
defp docs do
[
main: "readme",
extras: [
"README.md",
"LICENSE"
],
source_ref: "v#{@version}"
]
end
end