mirror of
				https://github.com/avitex/elixir-vultr
				synced 2025-10-31 14:13:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			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.2.3",
 | |
| 		elixir: "~> 1.5",
 | |
| 		deps: deps(),
 | |
| 		description: @description,
 | |
| 		package: package(),
 | |
| 	]
 | |
| 
 | |
| 	# Configuration for the OTP application
 | |
| 	def application, do: [
 | |
| 		applications: [:httpotion],
 | |
| 	]
 | |
| 
 | |
| 	defp deps, do: [
 | |
| 		{:inch_ex, "~> 0.5", 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
 |