Packages

Elixir NIF bindings for the netCDF C library. Read and write netCDF files — the standard format for array-oriented scientific data.

Current section

Files

Jump to
excdf mix.exs
Raw

mix.exs

defmodule Excdf.MixProject do
use Mix.Project
@version "0.1.0"
@source_url "https://github.com/jmcguigs/excdf"
def project do
[
app: :excdf,
version: @version,
elixir: "~> 1.15",
start_permanent: Mix.env() == :prod,
compilers: [:elixir_make] ++ Mix.compilers(),
make_targets: ["all"],
make_clean: ["clean"],
deps: deps(),
# Hex
description: description(),
package: package(),
# Docs
name: "Excdf",
source_url: @source_url,
docs: docs()
]
end
def application do
[
extra_applications: [:logger]
]
end
defp description do
"Elixir NIF bindings for the netCDF C library. " <>
"Read and write netCDF files — the standard format for array-oriented scientific data."
end
defp package do
[
maintainers: ["jmcguigs"],
licenses: ["MIT"],
links: %{"GitHub" => @source_url},
files: ~w(
lib
c_src
Makefile
mix.exs
README.md
LICENSE
.formatter.exs
)
]
end
defp docs do
[
main: "readme",
extras: ["README.md", "LICENSE"],
source_ref: "v#{@version}"
]
end
defp deps do
[
{:elixir_make, "~> 0.9", runtime: false},
{:ex_doc, "~> 0.35", only: :dev, runtime: false}
]
end
end