-
Notifications
You must be signed in to change notification settings - Fork 4
/
mix.exs
41 lines (37 loc) · 864 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
defmodule FuzzyCompare.MixProject do
use Mix.Project
@github_url "https://github.com/patrickdet/fuzzy_compare"
def project do
[
app: :fuzzy_compare,
version: "1.1.0",
elixir: "~> 1.11",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: "A fuzzy string comparison library for Elixir",
source_url: @github_url,
homepage_url: @github_url,
package: [
maintainers: ["Patrick Detlefsen"],
licenses: ["MIT"],
links: %{
"GitHub" => @github_url
}
],
docs: [
main: "FuzzyCompare"
]
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:ex_doc, "~> 0.30", only: :dev, runtime: false},
{:credo, "~> 1.7", only: [:dev, :test], runtime: false}
]
end
end