-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
50 lines (44 loc) · 962 Bytes
/
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
defmodule Tuftemark.MixProject do
use Mix.Project
@version "0.2.0"
@url "https://github.com/stackfusion/tuftemark"
def project do
[
app: :tuftemark,
deps: deps(),
description:
"Markdown converter tailored for Edward Tufte's handout format and ready to be used with Tufte CSS",
docs: docs(),
elixir: "~> 1.16",
name: "Tuftemark",
package: package(),
version: @version
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:earmark, "~> 1.4"},
{:ex_doc, "~> 0.34", only: :dev, runtime: false}
]
end
defp docs do
[
main: "Tuftemark",
source_ref: "v#{@version}",
source_url: @url
]
end
defp package do
%{
licenses: ["MIT"],
maintainers: ["Sergey Kuznetsov"],
links: %{"GitHub" => @url}
}
end
end