defmodule Stash.Mixfile do use Mix.Project @url_docs "http://hexdocs.pm/stash" @url_github "https://github.com/whitfin/stash" def project do [ app: :stash, name: "Stash", description: "Simple ETS backed key/value store for Elixir", package: %{ files: [ "lib", "mix.exs", "LICENSE", "README.md" ], licenses: ["MIT"], links: %{ "Docs" => @url_docs, "GitHub" => @url_github }, maintainers: ["Isaac Whitfield"] }, version: "2.0.0", elixir: "~> 1.7", deps: deps(), docs: [ extras: ["README.md"], source_ref: "master", source_url: @url_github ], test_coverage: [ tool: ExCoveralls ] ] end # Configuration for the OTP application # # Type "mix help compile.app" for more information def application, do: [mod: {Stash.App, []}] # Dependencies can be Hex packages: # # {:mydep, "~> 0.3.0"} # # Or git/path repositories: # # {:mydep, git: "https://github.com/elixir-lang/mydep.git", tag: "0.1.0"} # # Type "mix help deps" for more examples and options defp deps do [ {:eternal, "~> 1.2"}, {:ex_doc, "~> 0.29", optional: true, only: :docs}, {:excoveralls, "~> 0.18", optional: true, only: :cover} ] end end