-
Notifications
You must be signed in to change notification settings - Fork 8
/
mix.exs
46 lines (43 loc) · 999 Bytes
/
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
defmodule ReqS3.MixProject do
use Mix.Project
def project do
[
app: :req_s3,
version: "0.2.3",
elixir: "~> 1.15",
start_permanent: Mix.env() == :prod,
deps: deps(),
aliases: [
"test.all": ["test --include integration"]
],
preferred_cli_env: [
"test.all": :test,
docs: :docs,
"hex.publish": :docs
],
docs: [
main: "readme",
extras: ["README.md", "CHANGELOG.md", "examples/mnist.livemd", "examples/upload.livemd"]
],
package: [
description: "Req plugin for S3.",
licenses: ["Apache-2.0"],
links: %{
"GitHub" => "https://github.com/wojtekmach/req_s3",
"Changelog" => "https://hexdocs.pm/req_s3/changelog.html"
}
]
]
end
def application do
[
extra_applications: [:logger, :xmerl]
]
end
defp deps do
[
{:req, "~> 0.5.6"},
{:ex_doc, ">= 0.0.0", only: :docs}
]
end
end