defmodule MatchEngine.Mixfile do use Mix.Project def project do [ app: :match_engine, version: "1.2.0", 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 [ {:poison, "~> 3.0"}, {:timex, "~> 3.1"}, {:simetric, "~> 0.2.0"}, {:ex_doc, "~> 0.12", only: :dev, runtime: false} ] end end