-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
59 lines (53 loc) · 1.44 KB
/
mix.exs
File metadata and controls
59 lines (53 loc) · 1.44 KB
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
defmodule Sashite.Sin.MixProject do
use Mix.Project
@version "3.1.0"
@source_url "https://github.com/sashite/sin.ex"
def project do
[
app: :sashite_sin,
version: @version,
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
deps: deps(),
name: "Sashite.Sin",
source_url: @source_url,
homepage_url: "https://sashite.dev/specs/sin/",
docs: [
main: "readme",
extras: ["README.md", "LICENSE"]
]
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.4", only: [:dev, :test], runtime: false},
{:ex_doc, "~> 0.31", only: :dev, runtime: false}
]
end
defp description do
"SIN (Style Identifier Notation) implementation for Elixir. " <>
"Compile-time generated function clauses for zero-overhead parsing of player style " <>
"identifiers in abstract strategy board games."
end
defp package do
[
name: "sashite_sin",
files: ~w(lib .formatter.exs mix.exs README.md LICENSE),
licenses: ["Apache-2.0"],
links: %{
"GitHub" => @source_url,
"Specification" => "https://sashite.dev/specs/sin/1.0.0/",
"Documentation" => "https://hexdocs.pm/sashite_sin"
},
maintainers: ["Cyril Kato"]
]
end
end