-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmix.exs
55 lines (49 loc) · 1.32 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
defmodule Scenic.Clock.MixProject do
use Mix.Project
@version "0.11.0"
@github "https://github.com/ScenicFramework/scenic_clock"
def project do
[
app: :scenic_clock,
version: @version,
elixir: "~> 1.8",
start_permanent: Mix.env() == :prod,
deps: deps(),
docs: [
main: "Scenic.Clock.Components",
source_ref: "v#{@version}",
source_url: @github
# homepage_url: "http://kry10.com",
],
description: description(),
package: [
name: :scenic_clock,
contributors: ["Boyd Multerer"],
maintainers: ["Boyd Multerer"],
licenses: ["Apache-2.0"],
links: %{github: @github}
],
elixirc_paths: elixirc_paths(Mix.env())
]
end
# Specifies which paths to compile per environment.
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
# Run "mix help compile.app" to learn about applications.
def application do
[]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:scenic, "~> 0.11.0"},
{:ex_doc, ">= 0.0.0", only: [:dev, :docs]},
{:dialyxir, "~> 1.1", only: :dev, runtime: false}
]
end
defp description() do
"""
Scenic.Clock - Analog and Digital clock components for Scenic
"""
end
end