forked from ecstatic-framework/ecstatic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
46 lines (41 loc) · 935 Bytes
/
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
defmodule Ecstatic.Mixfile do
use Mix.Project
def project do
[
app: :ecstatic,
version: "0.1.1",
elixir: "~> 1.5",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
name: "Ecstatic",
deps: deps(),
package: package(),
docs: docs()
]
end
def application do
[extra_applications: [:logger]]
end
defp package do
[
description: "An ECS (Entity-Component-System) framework in Elixir",
licenses: ["MIT"],
maintainers: ["Aldric Giacomoni"],
links: %{github: "https://github.com/trevoke/ecstatic"},
source_url: "https://github.com/trevoke/ecstatic"
]
end
defp docs do
[
main: "Ecstatic",
source_url: "https://github.com/trevoke/ecstatic"
]
end
defp deps do
[
{:ex_doc, ">= 0.0.0", only: :dev},
{:uuid, "~> 1.1"},
{:gen_stage, "~> 0.12.2"}
]
end
end