-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmix.exs
53 lines (46 loc) · 1.06 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
defmodule Fine.MixProject do
use Mix.Project
@version "0.1.0"
@description "C++ library enabling more ergonomic NIFs, tailored to Elixir"
@github_url "https://github.com/elixir-nx/fine"
def project do
[
app: :fine,
version: @version,
elixir: "~> 1.15",
name: "Fine",
description: @description,
start_permanent: Mix.env() == :prod,
deps: deps(),
aliases: aliases(),
docs: docs(),
package: package()
]
end
def application do
[]
end
defp deps do
[
{:ex_doc, "~> 0.37", only: :dev, runtime: false},
{:makeup_syntect, "~> 0.1", only: :dev, runtime: false}
]
end
defp aliases() do
[test: fn _ -> Mix.shell().error("To run tests, go to the test directory") end]
end
defp docs() do
[
main: "Fine",
source_url: @github_url,
source_ref: "v#{@version}"
]
end
defp package do
[
licenses: ["Apache-2.0"],
links: %{"GitHub" => @github_url},
files: ~w(include lib mix.exs README.md LICENSE CHANGELOG.md)
]
end
end