-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
67 lines (61 loc) · 1.66 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# SPDX-FileCopyrightText: 2024 Rosa Richter
#
# SPDX-License-Identifier: AGPL-3.0-or-later
defmodule IntSet.MixProject do
use Mix.Project
def project do
[
name: "IntSet",
app: :int_set,
version: "3.0.0",
elixir: "~> 1.16",
start_permanent: Mix.env() == :prod,
description: "A time- and memory-efficient unordered data structure for positive integers.",
package: package(),
deps: deps(),
docs: docs(),
source_url: "https://github.com/Cantido/int_set",
dialyzer: [flags: ["-Wunmatched_returns", :error_handling]]
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:benchee, "~> 1.0", only: :dev},
{:benchee_markdown, "~> 0.2", only: :dev},
{:credo, "~> 1.5", only: [:dev, :test], runtime: false},
{:stream_data, "~> 1.0", only: [:dev, :test]},
{:ex_doc, "~> 0.19", only: :dev, runtime: false},
{:dialyxir, "~> 1.0", only: [:dev], runtime: false},
{:ex_check, "~> 0.16.0", only: [:dev], runtime: false},
{:doctor, ">= 0.0.0", only: [:dev], runtime: false}
]
end
defp package do
[
files: ["lib", "mix.exs", "README.md", "CHANGELOG.md", "LICENSES/*"],
maintainers: ["Rosa Richter"],
licenses: ["AGPL-3.0-or-later", "CC-BY-4.0"],
links: %{
"Github" => "https://github.com/Cantido/int_set",
"Sponsor" => "https://liberapay.com/rosa"
}
]
end
defp docs do
[
main: "IntSet",
api_reference: false,
extras: [
"README.md",
"CHANGELOG.md",
"code_of_conduct.md",
"CONTRIBUTING.md"
]
]
end
end