-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
46 lines (40 loc) · 842 Bytes
/
mix.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
defmodule Lethe.MixProject do
use Mix.Project
@repo_url "https://github.com/queer/lethe"
def project do
[
app: :lethe,
version: "0.6.0",
elixir: "~> 1.11",
start_permanent: Mix.env() == :prod,
deps: deps(),
# Hex
description: "A friendly query DSL for Mnesia",
package: [
maintainers: ["amy"],
links: %{"GitHub" => @repo_url},
licenses: ["MIT"],
],
# Docs
name: "Lethe",
docs: [
homepage_url: @repo_url,
source_url: @repo_url,
extras: [
"README.md",
],
],
]
end
def application do
[
extra_applications: [:logger, :mnesia],
]
end
defp deps do
[
{:typed_struct, "~> 0.2.1"},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
]
end
end