Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Cone.MixProject do
use Mix.Project
def project do
[
app: :cone,
version: "0.1.0",
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package(),
name: "Cone",
source_url: "https://github.com/AISemanticsStudy/cone"
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:nimble_parsec, "~> 1.0"},
{:table_rex, "~> 4.1.0"},
{:ex_doc, "~> 0.34", only: :dev, runtime: false, warn_if_outdated: true}
]
end
defp description do
"""
An implementation of the LMPM abstract machine.
"""
end
defp package do
[
files: ~w(lib .formatter.exs mix.exs README.md),
licenses: ["MIT", "Apache-2.0"],
links: %{
"GitHub" => "https://github.com/AISemanticsStudy/cone",
"LMPM Reference" => "https://github.com/AISemanticsStudy/lmpm"
}
]
end
end