Current section
Files
Jump to
Current section
Files
mix.exs
defmodule CmdStanex.MixProject do
use Mix.Project
def project do
[
app: :cmdstanex,
version: "0.1.0",
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package(),
name: "CmdStanex",
source_url: "https://github.com/mjveilleux/cmdstanex"
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger, :ssl, :inets],
mod: {CmdStan.Application, []}
]
end
defp description do
"A lightweight Elixir interface to CmdStan, the command line interface to the Stan probabilistic programming language."
end
defp package() do
[
# This option is only needed when you don't want to use the OTP application name
name: "cmdstanex",
# These are the default files included in the package
files: ~w(lib mix.exs README*),
licenses: ["Apache-2.0"],
links: %{"GitHub" => "https://github.com/mjveilleux/cmdstanex"}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:httpoison, "~> 2.0"},
{:hackney, "~> 1.18"},
{:jason, "~> 1.4"},
{:nimble_csv, "~> 1.2"},
{:progress_bar, "~> 2.0"},
{:toml, "~> 0.7"},
{:logger_file_backend, "~> 0.0.13"},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
end