defmodule MatchEngine.Mixfile do use Mix.Project def project do [ app: :match_engine, version: File.read!("VERSION"), elixir: "~> 1.5", elixirc_options: [warnings_as_errors: true], description: description(), package: package(), source_url: "https://github.com/botsqd/match_engine", homepage_url: "https://github.com/botsqd/match_engine", build_embedded: Mix.env() == :prod, start_permanent: Mix.env() == :prod, deps: deps() ] end defp description do "In-memory matching/filtering engine with Mongo-like query syntax" end defp package do %{ files: ["lib", "mix.exs", "*.md", "LICENSE"], maintainers: ["Arjan Scherpenisse"], licenses: ["MIT"], links: %{"GitHub" => "https://github.com/botsqd/match_engine"} } 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 [ {:timex, "~> 3.1"}, {:simetric, "~> 0.2.0"}, {:poison, "~> 3.0", only: :test}, {:ex_doc, "~> 0.18.0", runtime: false, only: :dev} ] end end