-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmix.exs
54 lines (48 loc) · 1.16 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
defmodule GraphqlClient.MixProject do
use Mix.Project
@source_url "https://github.com/TheRealReal/graphql_client"
@version "0.2.1"
def project do
[
app: :graphql_client,
version: @version,
name: "GraphQL Client",
description: " A composable GraphQL client library for Elixir",
elixir: "~> 1.11",
deps: deps(),
docs: docs(),
package: package()
]
end
def application do
[
extra_applications: []
]
end
defp deps do
[
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
defp package do
[
maintainers: ["TheRealReal"],
licenses: ["Apache-2.0"],
links: %{"GitHub" => @source_url}
]
end
defp docs do
[
source_ref: "v#{@version}",
canonical: "http://hexdocs.pm/graphql_client",
source_url: @source_url,
extras: [
"README.md",
"CHANGELOG.md": [filename: "changelog", title: "Changelog"],
"CODE_OF_CONDUCT.md": [filename: "code_of_conduct", title: "Code of Conduct"],
LICENSE: [filename: "license", title: "License"],
NOTICE: [filename: "notice", title: "Notice"]
]
]
end
end