-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
66 lines (59 loc) · 1.55 KB
/
Copy pathmix.exs
File metadata and controls
66 lines (59 loc) · 1.55 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
60
61
62
63
64
65
66
defmodule Sashite.Feen.MixProject do
use Mix.Project
@version "2.0.0"
@source_url "https://github.com/sashite/feen.ex"
def project do
[
app: :sashite_feen,
version: @version,
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
deps: deps(),
# Documentation
name: "Sashite.Feen",
source_url: @source_url,
homepage_url: "https://sashite.dev/specs/feen/",
docs: [
main: "readme",
extras: ["README.md", "LICENSE"]
]
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:qi, "~> 3.0"},
{:sashite_epin, "~> 1.2"},
{:sashite_sin, "~> 3.1"},
{: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
"""
FEEN (Field Expression Encoding Notation) implementation for Elixir.
A rule-agnostic position encoding for two-player, turn-based board games
built on the Sashité Game Protocol.
"""
end
defp package do
[
name: "sashite_feen",
files: ~w(lib .formatter.exs mix.exs README.md LICENSE),
licenses: ["Apache-2.0"],
links: %{
"GitHub" => @source_url,
"Specification" => "https://sashite.dev/specs/feen/1.0.0/",
"Documentation" => "https://hexdocs.pm/sashite_feen"
},
maintainers: ["Cyril Kato"]
]
end
end