Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Qry.MixProject do
use Mix.Project
def project do
[
app: :qry,
version: "0.1.0",
elixir: "~> 1.15",
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 deps do
[
{:ex_doc, "~> 0.31", only: :dev, runtime: false}
]
end
defp package do
[
licenses: ["Apache-2.0"],
links: %{"GitHub" => "https://github.com/austinthecoder/qry"}
]
end
end