defmodule HTTPill.Mixfile do use Mix.Project def project do [ app: :httpill, version: "0.1.0", elixir: "~> 1.5", description: "HTTP requests for sick people!", name: "HTTPill", source_url: "https://github.com/kelvinst/httpill", start_permanent: Mix.env == :prod, package: [ name: :httpill, files: ["lib", "mix.exs", "README*", "LICENSE*"], maintainers: ["Kelvin Stinghen"], licenses: ["MIT"], links: %{"GitHub" => "https://github.com/kelginst/httpill"} ], deps: deps() ] end # Run "mix help compile.app" to learn about applications. def application do [ extra_applications: [:logger] ] end # Run "mix help deps" to learn about dependencies. defp deps do [ {:ex_doc, ">= 0.0.0", only: :dev}, ] end end