defmodule Qry.MixProject do use Mix.Project def project do [ app: :qry, version: "0.2.0", elixir: "~> 1.15", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod, deps: deps(), description: "Simple query language for Elixir.", package: package(), source_url: "https://github.com/austinthecoder/qry" ] end def application do [] end defp elixirc_paths(:test), do: ["lib", "test/support"] defp elixirc_paths(_), do: ["lib"] defp deps do [ {:ex_doc, "~> 0.31", only: :dev, runtime: false}, {:mix_test_watch, "~> 1.0", only: [:dev, :test], runtime: false} ] end defp package do [ licenses: ["Apache-2.0"], links: %{"GitHub" => "https://github.com/austinthecoder/qry"} ] end end