Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Gamelan.MixProject do
use Mix.Project
def project do
[
app: :gamelan,
version: "0.0.1",
elixir: "~> 1.15",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: "Composable runtime for agent systems",
package: package(),
source_url: "https://github.com/thisisartium/gamelan"
]
end
defp package do
[
licenses: ["Apache-2.0"],
links: %{"GitHub" => "https://github.com/thisisartium/gamelan"}
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:req_llm, "~> 1.8"},
{:jason, "~> 1.4"}
]
end
end