Packages

An ECS (Entity-Component-System) framework in Elixir

Current section

Files

Jump to
ecstatic mix.exs
Raw

mix.exs

defmodule Ecstatic.Mixfile do
use Mix.Project
def project do
[
app: :ecstatic,
version: "0.1.0",
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