-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
35 lines (31 loc) · 675 Bytes
/
Copy pathmix.exs
File metadata and controls
35 lines (31 loc) · 675 Bytes
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
defmodule OSUtils.Mixfile do
use Mix.Project
@version "0.3.0"
@github "https://github.com/orderthruchaos/os_utils"
def project do
[
app: :os_utils,
version: @version,
elixir: ">= 1.2.0",
deps: deps,
description: "OS utilities for Elixir.",
package: [
maintainers: ["Brett DiFrischia"],
licenses: ["Apache 2.0"],
links: %{ "Github" => @github },
],
docs: [
readme: true,
main: "README",
source_url: @github,
source_ref: @version,
],
]
end
def application, do: []
defp deps do
[
{:ex_doc, "~> 0.11.4", only: :dev}
]
end
end