Current section
Files
Jump to
Current section
Files
predicated
mix.exs
mix.exs
defmodule Predicated.MixProject do
use Mix.Project
@source_url "https://github.com/themusicman/predicated"
@version "1.1.1"
def project do
[
app: :predicated,
version: @version,
elixir: "~> 1.13",
package: package(),
deps: deps(),
docs: docs()
]
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
[
{:nimble_parsec, "~> 1.2"},
{:flamel, "~> 1.4"},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
def package do
[
description:
"A library that allows for building predicates to query an in-memory data structure in Elixir",
maintainers: ["Thomas Brewer"],
contributors: ["Thomas Brewer"],
licenses: ["MIT"],
links: %{
GitHub: @source_url
}
]
end
defp docs do
[
extras: [
"CHANGELOG.md",
LICENSE: [title: "License"],
"README.md": [title: "Readme"]
],
main: "readme",
source_url: @source_url,
source_ref: "v#{@version}",
api_reference: false,
formatters: ["html"]
]
end
end