This repository has been archived by the owner on Jan 31, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmix.exs
58 lines (52 loc) · 1.7 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
defmodule Siftsciex.MixProject do
use Mix.Project
def project do
[
app: :siftsciex,
name: "Siftsciex",
description: description(),
package: package(),
version: "0.5.0",
elixir: "~> 1.7",
elixirc_paths: elixirc_paths(Mix.env),
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [coveralls: :test, "coveralls.detail": :test, "coveralls.post": :test, "coveralls.html": :test],
start_permanent: Mix.env() == :prod,
dialyzer: [plt_add_deps: :transitive, ignore_warnings: "dialyzer.ignore-warnings"],
deps: deps(),
source_url: "https://github.com/apartmenttherapy/siftsciex",
docs: [extras: ["README.md"]]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Specifies which paths to compile per environment.
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:credo, ">= 0.0.0", only: [:dev, :test]},
{:dialyxir, ">= 0.0.0", only: [:dev, :test], runtime: false},
{:excoveralls, ">= 0.0.0", only: [:dev, :test]},
{:ex_doc, ">= 0.0.0", only: [:dev, :test], runtime: false},
{:httpoison, ">= 0.0.0"},
{:poison, ">= 0.0.0"}
]
end
defp description do
"An Elixir Library for interacting with Sift Science's REST API"
end
defp package do
[
licenses: ["LGPLv3"],
maintainers: ["Glen Holcomb"],
links: %{"GitHub" => "https://github.com/apartmenttherapy/siftsciex"},
source_url: "https://github.com/apartmenttherapy/siftsciex"
]
end
end