-
Notifications
You must be signed in to change notification settings - Fork 3
/
mix.exs
66 lines (59 loc) · 1.96 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
64
65
66
defmodule Complex.Mixfile do
use Mix.Project
def project do
[
app: :complex,
version: "0.5.0",
description: description(),
package: package(),
elixir: "~> 1.12",
deps: deps(),
docs: [
main: "Complex",
authors: package()[:maintainers],
extras: [],
before_closing_body_tag: &before_closing_body_tag/1
]
]
end
# Configuration for the OTP application
#
# Type "mix help compile.app" for more information
def application do
[applications: [:logger]]
end
defp deps do
[
{:ex_doc, "~> 0.28.3", only: :dev, runtime: false},
{:dialyxir, "~> 0.4", only: [:dev]}
]
end
defp description do
"""
Complex is a library for types and mathematical functions for complex
numbers.
"""
end
defp package do
[
maintainers: ["Tom Krauss", "Paulo Valente", "José Valim"],
licenses: ["Apache 2.0"],
links: %{
"GitHub" => "https://github.com/elixir-nx/complex.git",
"Docs" => "http://hexdocs.pm/complex"
}
]
end
defp before_closing_body_tag(:html) do
"""
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css" integrity="sha384-t5CR+zwDAROtph0PXGte6ia8heboACF9R5l/DiY+WZ3P2lxNgvJkQk5n7GPvLMYw" crossorigin="anonymous">
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js" integrity="sha384-FaFLTlohFghEIZkw6VGwmf9ISTubWAVYW8tG8+w2LAIftJEULZABrF9PPFv+tVkH" crossorigin="anonymous"></script>
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/contrib/auto-render.min.js" integrity="sha384-bHBqxz8fokvgoJ/sc17HODNxa42TlaEhB+w8ZJXTc2nZf1VgEaFZeZvT4Mznfz0v" crossorigin="anonymous"
onload="renderMathInElement(document.body, {delimiters: [
{left: '$$', right: '$$', display: true},
{left: '$', right: '$', display: false}
]});"></script>
"""
end
defp before_closing_body_tag(_), do: ""
end