defmodule ECSComb.MixProject do @moduledoc false use Mix.Project def project do [ app: :ecs_comb, version: "0.1.0", elixir: "~> 1.19", description: "A BEAM/ETS Entity-Component-System framework with fixed ticks " <> "and parallel system scheduling", start_permanent: Mix.env() == :prod, test_ignore_filters: [&String.starts_with?(&1, "test/support/")], package: package(), source_url: "https://github.com/Moeblack/ECSComb", deps: deps() ] end defp package do [ licenses: ["AGPL-3.0-only"], links: %{"GitHub" => "https://github.com/Moeblack/ECSComb"} ] end def application do [ extra_applications: [:logger] ] end defp deps do [{:ex_doc, "~> 0.35", only: :dev, runtime: false}] end end