Packages

Destructing assignment with `<~`

Current section

Files

Jump to
dextruct mix.exs
Raw

mix.exs

defmodule Dextruct.Mixfile do
use Mix.Project
def project do
[
app: :dextruct,
version: "0.1.0",
elixir: "~> 1.5",
name: "Dextruct",
source_url: "https://github.com/taiansu/dextruct",
homepage_url: "https://taiansu.github.io/dextruct",
description: description(),
package: package(),
deps: deps()
]
end
def application do
[extra_applications: [:logger]]
end
def description do
"""
Destructing assignment with `<~`
"""
end
defp package do
[
name: :dextruct,
files: ["lib", "mix.exs", "README.md", "LICENSE"],
maintainers: ["Tai An Su"],
licenses: ["Apache 2.0"],
links: %{"GitHub": "https://github.com/taiansu/dextruct",},
]
end
defp deps do
[
{:ex_doc, "~> 0.16", only: :dev},
{:excoveralls, "~> 0.7", only: [:dev, :test]},
]
end
end