-
Notifications
You must be signed in to change notification settings - Fork 2
/
mix.exs
55 lines (50 loc) · 1.28 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
defmodule BencheeCSV.Mixfile do
use Mix.Project
@version "1.0.0"
def project do
[
app: :benchee_csv,
version: @version,
elixir: "~> 1.6",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test,
"coveralls.travis": :test
],
name: "BencheeCSV",
docs: [source_ref: @version],
source_url: "https://github.com/PragTob/benchee_csv",
description: """
Get CSV from your benchee benchmarks to turn them into graphs or whatever!
"""
]
end
def application do
[]
end
defp deps do
[
{:benchee, ">= 0.99.0 and < 2.0.0"},
{:csv, "~> 2.0"},
{:excoveralls, "~> 0.10", only: :test},
{:credo, "~> 1.0", only: :dev},
{:ex_doc, "~> 0.11", only: :dev},
{:earmark, "~> 1.2", only: :dev},
{:dialyxir, "~> 1.0", only: :dev, runtime: false}
]
end
defp package do
[
maintainers: ["Tobias Pfeiffer"],
licenses: ["MIT"],
links: %{github: "https://github.com/PragTob/benchee_csv"}
]
end
end