defmodule Publishex.MixProject do use Mix.Project @url "https://github.com/maartenvanvliet/certbot" def project do [ app: :publishex, version: "1.0.0", elixir: "~> 1.9", start_permanent: Mix.env() == :prod, deps: deps(), source_url: @url, homepage_url: @url, name: "Publishex", description: "Publish static files to static file hoster (Netlify)", package: [ maintainers: ["Maarten van Vliet"], licenses: ["MIT"], links: %{"GitHub" => @url}, files: ~w(LICENSE README.md lib mix.exs) ], docs: [ main: "Publishex", canonical: "http://hexdocs.pm/publishex", source_url: @url ] ] 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 [ {:httpoison, "~> 1.5"}, {:jason, "~> 1.1"}, {:ex_doc, "~> 0.21", only: :dev}, {:mox, "~> 0.5", only: :test}, {:credo, "~> 1.1.1", only: [:dev, :test], runtime: false} # {:dep_from_hexpm, "~> 0.3.0"}, # {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"} ] end end