-
-
Notifications
You must be signed in to change notification settings - Fork 66
/
mix.exs
63 lines (55 loc) · 1.37 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
defmodule StreamData.Mixfile do
use Mix.Project
@version "1.1.2"
@repo_url "https://github.com/whatyouhide/stream_data"
def project() do
[
app: :stream_data,
version: @version,
elixir: "~> 1.12",
start_permanent: Mix.env() == :prod,
deps: deps(),
# Tests
test_coverage: [tool: ExCoveralls],
# Docs
name: "StreamData",
docs: [
source_ref: "v#{@version}",
main: "StreamData",
source_url: @repo_url
],
# Hex
description: "Data generation and property-based testing for Elixir",
package: [
maintainers: ["Andrea Leopardi"],
licenses: ["Apache-2.0"],
links: %{"GitHub" => @repo_url, "Sponsor" => "https://github.com/sponsors/whatyouhide"}
],
# Dialyxir
dialyzer: [
plt_add_deps: :apps_direct,
plt_file: {:no_warn, "priv/plts/project.plt"},
plt_add_apps: [:ex_unit]
]
]
end
def application() do
[
extra_applications: [],
env: [
initial_size: 1,
max_runs: 100,
max_run_time: :infinity,
max_shrinking_steps: 100
]
]
end
defp deps() do
[
# Dev/test dependencies.
{:dialyxir, "~> 1.3", only: [:dev, :test], runtime: false},
{:ex_doc, "~> 0.29", only: :dev},
{:excoveralls, "~> 0.17.0", only: :test}
]
end
end