mirror of
https://github.com/avitex/elixir-vultr
synced 2024-11-21 19:09:57 +00:00
4eba9e11db
Bumps [inch_ex](https://github.com/rrrene/inch_ex) from 0.5.6 to 2.0.0. - [Release notes](https://github.com/rrrene/inch_ex/releases) - [Changelog](https://github.com/rrrene/inch_ex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rrrene/inch_ex/commits/v2.0.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
36 lines
673 B
Elixir
36 lines
673 B
Elixir
defmodule Vultr.Mixfile do
|
|
use Mix.Project
|
|
|
|
@description """
|
|
Simple wrapper for the Vultr API
|
|
"""
|
|
|
|
def project, do: [
|
|
app: :vultr,
|
|
version: "0.3.0",
|
|
elixir: "~> 1.5",
|
|
deps: deps(),
|
|
description: @description,
|
|
package: package(),
|
|
]
|
|
|
|
# Configuration for the OTP application
|
|
def application, do: [
|
|
applications: [:httpotion],
|
|
]
|
|
|
|
defp deps, do: [
|
|
{:inch_ex, "~> 2.0", only: :docs},
|
|
{:ex_doc, "~> 0.16", only: :dev, runtime: false},
|
|
{:httpotion, "~> 3.0.2"},
|
|
{:poison, "~> 3.1"},
|
|
]
|
|
|
|
defp package, do: [
|
|
name: :vultr,
|
|
maintainers: ["James Dyson"],
|
|
licenses: ["MIT"],
|
|
links: %{"GitHub" => "https://github.com/avitex/elixir-vultr"},
|
|
]
|
|
end
|