-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
88 lines (74 loc) · 2.01 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
defmodule FpLab1.MixProject do
@moduledoc """
Settings for fp_lab1 mix project.
"""
use Mix.Project
@version "version" |> File.read!() |> String.trim()
def project do
[
app: :fp_lab1,
elixir: "~> 1.17",
elixirc_paths: elixirc_paths(Mix.env()),
preferred_cli_env: [
# Testing
espec: :test,
# Test coverage
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test,
"coveralls.cobertura": :test
],
test_coverage: [tool: ExCoveralls],
start_permanent: Mix.env() == :prod,
deps: deps(),
aliases: aliases(),
# Docs
name: "functional-programming-1",
source_url: "https://github.com/maxbarsukov-itmo/functional-programming-1",
homepage_url: "https://github.com/maxbarsukov-itmo/functional-programming-1",
# Hex
description: description(),
package: package(),
version: @version
]
end
def application do
[
extra_applications: [:logger]
]
end
# Specifies which paths to compile per environment.
defp elixirc_paths(:test), do: ["lib", "spec/support"]
defp elixirc_paths(_), do: ["lib"]
defp deps do
[
# Testing
{:espec, "~> 1.9.2", only: :test},
# Test coverage
{:excoveralls, "~> 0.18", only: :test},
# Linting & formatting
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.4", only: [:dev, :test], runtime: false},
{:ex_check, "~> 0.16.0", only: [:dev], runtime: false}
]
end
def aliases do
[
test: "espec"
]
end
def description do
"Solution of some problems from projecteuler.net on Elixir"
end
def package do
[
files: ["lib", "mix.exs", "LICENSE*", "README*", "version"],
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/maxbarsukov-itmo/functional-programming-1"
},
maintainers: ["Max Barsukov <maximbarsukov@bk.ru>"]
]
end
end