-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
63 lines (57 loc) · 1.56 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
defmodule D2lvalenceElixir.Mixfile do
use Mix.Project
def project do
[
app: :d2lvalence_elixir,
version: "0.1.0",
elixir: "~> 1.12",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package(),
# Docs
name: "D2lvalenceElixir",
source_url: "https://github.com/chrisapa/d2lvalence_elixir",
homepage_url: "https://github.com/chrisapa/d2lvalence_elixir",
docs: [
# The main page in the docs
main: "readme",
extras: ["README.md"]
]
]
end
defp package do
[
files: ["lib", "mix.exs", "README*", "LICENSE*"],
maintainers: ["Christian Aparicio Baquen (chris_apa)"],
licenses: ["Apache 2.0"],
links: %{
"GitHub" => "https://github.com/chrisapa/d2lvalence_elixir",
"Docs" => "https://hexdocs.pm/d2lvalence_elixir/"
}
]
end
defp description do
"""
Elixir implementation of d2lvalence to connect to the Desire2Learn's Valence API (Brightspace)
"""
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:crypto]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:hackney, "~> 1.17"},
{:jason, "~> 1.2"},
{:ex_doc, "~> 0.11", only: :dev},
{:earmark, "~> 0.1", only: :dev}
# {:dep_from_hexpm, "~> 0.3.0"},
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
]
end
end