Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Magistra.MixProject do
use Mix.Project
@version "0.0.1"
@source_url "https://github.com/digitsu/magistra"
def project do
[
app: :magistra,
version: @version,
elixir: "~> 1.15",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package(),
source_url: @source_url
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:ex_doc, "~> 0.31", only: :dev, runtime: false}
]
end
defp description do
"""
Magistra — Zero-knowledge proof generation and verification services for
Bitcoin Script. Part of the Script-Verify toolkit.
"""
end
defp package do
[
name: "magistra",
licenses: ["MIT"],
links: %{"GitHub" => @source_url},
maintainers: ["Jerry David Chan"]
]
end
end