-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
mix.exs
48 lines (44 loc) · 1.21 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
defmodule Burrito.MixProject do
use Mix.Project
def project do
[
app: :burrito,
description:
"Burrito is our answer to the problem of distributing Elixir applications across varied environments. Turn your Elixir application into a simple, self-contained, single-file executable for MacOS, Linux, and Windows.",
version: String.trim(File.read!("VERSION")),
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps(),
docs: [
main: "readme",
extras: ["README.md"]
],
package: package()
]
end
def application do
[
extra_applications: [:logger, :eex]
]
end
def package do
[
maintainers: ["Digit"],
name: :burrito,
licenses: ["MIT"],
files: ~w(lib LICENSE VERSION mix.exs README.md .formatter.exs src bin _dummy_plugin.zig build.zig),
links: %{
"Github" => "https://github.com/burrito-elixir/burrito",
"Sponsor" => "https://github.com/sponsors/doawoo"
}
]
end
defp deps do
[
{:req, ">= 0.4.0"},
{:typed_struct, "~> 0.2.0 or ~> 0.3.0", runtime: false},
{:jason, "~> 1.2"},
{:ex_doc, ">= 0.0.0", only: :dev}
]
end
end