-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
44 lines (39 loc) · 1.02 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
defmodule LogicalFile.MixProject do
use Mix.Project
@name "LogicalFile"
@version "1.0.4"
@source_url "http://www.apache.org/licenses/LICENSE-2.0"
@description """
An Elixir library for working with logical files that appear as a contiguous
text but are represented by one or more sections representing backing files.
"""
def project do
[
app: :logical_file,
version: @version,
elixir: "~> 1.13",
start_permanent: Mix.env() == :prod,
name: @name,
source_url: @source_url,
description: @description,
deps: deps(),
package: package()
]
end
# Run "mix help compile.app" to learn about applications.
def application, do: []
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:mix_test_watch, "~> 1.0", only: :dev}
]
end
def package() do
[
maintainers: ["Matt Mower"],
licenses: ["Apache-2.0"],
links: %{"GitHub" => @source_url}
]
end
end