defmodule Prometheus.Mixfile do use Mix.Project def project do [app: :prometheus, version: "3.5.1", description: description(), package: package()] end defp description do """ Prometheus monitoring system and time series database client in Erlang. """ end def application do [mod: { :prometheus, [] }] end defp package do [build_tools: ["rebar3", "mix"], maintainers: ["Ilya Khaprov"], licenses: ["MIT"], links: %{"GitHub" => "https://github.com/deadtrickster/prometheus.erl", "Inets HTTPD Exporter" => "https://hex.pm/packages/prometheus_httpd", "Prometheus.ex" => "https://hex.pm/packages/prometheus_ex", "Ecto Instrumenter" => "https://hex.pm/packages/prometheus_ecto", "Phoenix Instrumenter" => "https://hex.pm/packages/prometheus_phoenix", "Plugs Instrumenter/Exporter" => "https://hex.pm/packages/prometheus_plugs", "Process info Collector" => "https://hex.pm/packages/prometheus_process_collector"}, files: ["mix.exs", "bin", "src", "include", "README.md", "LICENSE", "rebar.config"]] end end